Hostway swears they didn't do anything but mysterious breakdowns have made
us do the following test:
<?
if ($_POST) {
echo "<h3>name is defined as $name</h3>";
print_r($_POST) ;
exit;
}
?>
<form name="form1" method="post" action="test.ph p">
<input name="name" type="text" id="name">
<input type="submit" name="Submit" value="Submit">
</form>
This produces:
name is defined as
Array ( [name] => fellow [Submit] => Submit )
So $_POST has the defined var but $name is no longer automatically defined.
What did they do to the configuration?
TIA!
jg
us do the following test:
<?
if ($_POST) {
echo "<h3>name is defined as $name</h3>";
print_r($_POST) ;
exit;
}
?>
<form name="form1" method="post" action="test.ph p">
<input name="name" type="text" id="name">
<input type="submit" name="Submit" value="Submit">
</form>
This produces:
name is defined as
Array ( [name] => fellow [Submit] => Submit )
So $_POST has the defined var but $name is no longer automatically defined.
What did they do to the configuration?
TIA!
jg
Comment