Still experimenting, I made the bare-bones script even more bare-bones and instead of
<FORM NAME=bio_admin METHOD=POST ACTION=<?php echo $PHP_SELF?> ENCTYPE=multipart/form-data>
I did...
<FORM NAME=bio_admin METHOD=POST ACTION=<?php echo $PHP_SELF?>>
...and now it works! 😕
http://www.livinglegend.org/test.php
<?php
if (isset($_POST['submit']))
{
echo "Hello!<P>\n";
echo "<A HREF=$PHP_SELF>INDEX</A>";
}
else
{
?>
<FORM NAME=bio_admin METHOD=POST ACTION="<?php echo $PHP_SELF?>">
<INPUT TYPE=submit NAME=submit VALUE="SUBMIT DATA"><INPUT TYPE=reset VALUE=RESET>
<?php
}
?>
So the "ENCTYPE=multipart/form-data" is what's causing the problem? I've been using that because I upload other types of data, such as images, with my form. And again, they were all working before the upgrade and now they don't.
So based on this new discovery, does that solve anything? (Or narrow down the problem a bit more?)
Mike....