Posted by Massa Batheli on 04/26/06 21:38
Thanks guys
This code below works just fine producing the expected results in
html
<html>
<head></head>
<body>
<form action="message.php" method="post">
<p>Your name: <input type="text" name="name" /></p>
<p>Your age: <input type="text" name="age" /></p>
<p><input type="submit" /></p>
</form>
</body>
</html>
Hi <?php echo $_POST['name']; ?>.
You are <?php echo $_POST['age']; ?> years old.
If only I knew how to troubleshoot on the command line ...
It has moved from showing a blank page to not parsing when I move stuff
around
The code posted earlier does not work
As usual your input is highly appreciated
Massa
Navigation:
[Reply to this message]
|