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
https://forums.phpfreaks.com/topic/17708-php-and-html/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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