Hi, I'm trying to teach myself PHP for my job, and I've set up an Apache server on my home computer with PHP loaded as a module. I was setting up a form out of an example in an old book I got from work, and for whatever reason the processing file doesn't grab the variables from the form on the first page. It goes a little something like this:
Form page: form.html
<html>
<body>
<form method="get" action="result.php">
Input:
<input name="output" type="text" />
<br />
<input type="submit" />
</form>
</body>
</html>
Processing File: result.php
<html>
<body>
Output:
<?php
echo $output;
?>
</body>
</html>
I set this up on one of the servers at work, and it came out no problem. Thus I assume there's something wrong with my configuration at home. Any ideas?