I am just learning php so I am working through basic tutorials. I have made the following two pages. The form and message pages work if I upload them to my server, but they won't work in WE preview or if I send it out to a browser. I have XAMPP on my system and am using the PHP from there. The result after "Send" is the following:
form.html$input"; ?>
Code: Select all
<html>
<head></head>
<body>
<form action="message.php" method="post">
Enter your message: <input type="text" name="msg" size="30">
<input type="submit" value="Send">
</form>
</body>
</html>
Code: Select all
<html>
<head></head>
<body>
<?php
// retrieve form data
$input = $_POST['msg'];
// use it
echo "You said: <i>$input</i>";
?>
</body>
</html>