Jump to content

PHP and HTML !


Recommended Posts

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??
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.