Hey all,
I have installed Apache 1.3.24 and PHP 4.2.1 on my Windows 98 machine. I just recently got PHP working on my server with Apache by loading it as a module instead of that other way. Anyway, I have tried to create some basic html forms manipulation, but where PHP is supposed to print the value, there is nothing. (I used http://localhost/form_test.html to get to it) Here are my files:
---form_test.html---
<head><title>Form Test</title></head>
<body>
<form action="form_test.php" method="post">
Stuff here:<br>
<input type="text" name="stuff"><br>
<input type="submit" name="submit" value="Submit my stuff">
</form>
</body>
---form_test.php---
<head><title>Moo</title></head>
<body>
Your stuff is:<br>
<?php print $stuff; ?>
</body>
Thanks for your help.