Jump to content

garima

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

garima's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, When I try PHP code (like the one below index.php), $_POST works and I get the desired results. But when I put HTML code in .html file and PHP in .php file, the output does not get printed when I open the HTML file and then click Submit. I tried various manipulations in php.ini and apache. I'm using Windows XP, PHP 5 and Apache server. <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> <? if(isset($_POST['submit'])) {// Check to see if submit was clicked $name = $_POST['name']; print $name; print "Successful."; }  // End Submit Check ?> <form action="index.php" method="post"> Name: <input type="text" name="name"> <input type="submit" name="submit"> </form> </body> </html> Any clues??
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.