Hi there?
I've upgraded OS from RedHat Linux7.1 to RedHat Linux7.3.
Of course apache, php and mysql were upgraded(using RPM). as below(now).
- apache 1.3.23
- PHP Version 4.1.2
- mysql 3.23.49
Post vars were sent well before I did upgrade it,
But NOW It does NOT work.
I coded like this...
<form name="write" method="post" action="./write.html" enctype="multipart/form-data">
<input type="text" name="vars">
<input type="file" name="upfile">
<input type="submit" value="GO">
</form>
and then I coded on write.html like this...
<?
echo $vars;
echo $HTTP_POST_VARS[vars];
echo $HTTP_POST_VARS["vars"];
echo $POST[vars];
echo $POST["vars"];
?>
And the write.html page could get NOTHING.
Actually that is not just the problem of coming through post data.
Cuz, When I omitted enctype="multipart/form-data" part, Post data was coming through but file data was not.
Someone said "Could be a browser issue". I guess, could be.
But I have to use M$ Internet Explorer.
What's wrong?
Please Help Me~~~