I got apache installed and put php.ini in the c:\windows directory.
All is well but I cant use form varibles from HTML. I read some were to do it the old way (after 4.2 PHP) you had to change register_globals = On, (default nis OFF), In the php.ini file. I did this but it still dose not work. Example below:
HTML FILE:
<HTML>
<TITLE>
</TITLE>
<BODY>
<FORM METHOD="POST" ACTION="do_calc2.php">
How mant bags would you like? <INPUT type="text" name="q">
<INPUT type="submit" value="Submit">
</FORM>
</BODY>
</HTML>
PHP File
<?php
echo "quanty = ".$q;
?>
After entering 2 for q in the form
OUPUT From BROWSER
quanty =
I even tried below and still got the same output. Which from what I understand dose not require register_globals = On
<?php
import_request_variables(q, "formval_");
echo "quanty = .$formval_q;
?>