[snip]
I developed an html/php form  in a Php version 4.0.6, working fine, but
when
a moved the files to another web server with Php 4.3.2 the file
procesaadmision.php called in the Post method does not get any of the
input
html variables defined in the calling form.
<form ACTION="procesaadmision.php" METHOD=POST> 
[/snip]

A common problem. In 4.0.6 register_globals was ON in the php.ini, in
4.3.2 register_globals is OFF. You can either set register_globals to ON
in the php.ini or you can find your varaible values in the $_POST array

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to