Hello,
I need to add the superglobal variable $_FILES to a form as a hidden field, but I don't seem to get it right.
echo"
<form method='post' action=index.php>
<input type=hidden name=_FILES value=$_FILES>
<input type=submit value=submit>
</form>";
and once the form is submitted, the result is ($_FILES is empty), ALTHOUGH, before submitting the form, the superglobal variable is NOT empty.