Jump to content

harpalsinh999

Members
  • Posts

    35
  • Joined

  • Last visited

About harpalsinh999

  • Birthday 07/14/1991

Previous Fields

  • Languages
    php,mysql,html,css,javascript,ajax

Profile Information

  • Location
    rajkot

harpalsinh999's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. You could use a print specific CSS stylesheet and hide everything but what you want printed. <div class="no-print">I won't print</div><div class="something-else">I will!</div> Just the no-print class will be hidden, but anything with a print class will show. <style type="text/css" media="print">.no-print { display: none; }</style>
  2. harpalsinh999

    please help

    how can i master in php at home.anything like web suggestion,tools i only have basic knowledge in php so give me suggetion for learn php at home ?
  3. http://www.thatagency.com/design-studio-blog/2009/02/up-and-down-slider-using-jquery/ GO TO URL SEE DEMO AND DOWNLOAD CODE
  4. http://msdn.microsoft.com/en-us/library/8b83ac7t.aspx Install / Properly configure an SMTP server on localhost port 25 Change the configuration to point to some other SMTP server that you can connect to
  5. also try this example <!DOCTYPE html><html> <head> <style> html, body { height: 79%;margin: 6px; padding: -5px;} #container { height: 46%;min-height: 654px;width: 1328px;} #iframe {display: block;height: 100%;width: 100%;} </style> </head> <body> <div id="container"> <iframe id="iframe" src="index.php"></iframe> </div> </body></html>
  6. u can scroll off using scrolling="no" in <iframe id="iframe" src="index.php" scrolling="no"></iframe>
  7. http://www.html-form-guide.com/contact-form/simple-modal-popup-contact-form.html go to this url
  8. here is example without javascript <!DOCTYPE html><html> <head> <style> html, body {margin:0; padding:0; height:100%} #container {height:100%; width: 1345px; min-height: 550px;} #iframe {height: 100%; width: 100%; display: block} </style> </head> <body> <div id="container"> <iframe id="iframe" src="index.php"></iframe> </div> </body></html>
  9. put this frame code in your code <iframe id="myframe" style="width: 100%; height: 623px;" </iframe>
  10. thenks u so much.
  11. it is right but i have just do for practise .so give me suggestion or code ...?
  12. my password field display * i change the symbol # how can i change ? help me. <?phpsession_start();ob_start();if(isset($_POST['username'])&& isset($_POST['password'])){include('config.inc');$login = mysql_query("SELECT * FROM user WHERE (username = '" . ($_POST['username']) . "') and (password = '" . (($_POST['password'])) . "')");if (mysql_num_rows($login) == 1) {$_SESSION['username'] = $_POST['username']; header('Location: login.php');}} ?><html><link rel="stylesheet" type="text/css" href="logincss.css" /> <head><title>My Login Page</title></head><body><form method="POST" action="login.php"><label class="text">Username</label><input class="area" type="text" name="username" size="20"><br /><label class="text">Password</label><input class="area1" type="password" name="password" size="20" ><br /><input class="button" type="submit" value="Login"> </form> </body></html>
  13. harpalsinh999

    please help

    i want make money online from work at home php javascript html give me suggetion ,website etc.
×
×
  • Create New...