Hello,
What I'm trying to do is that i have the following.
Code HTML4Strict:<input type="hidden" name="path[]" value="C:\\science01.txt" />
how would i associate it in $_FILES? doing the following doesn't work.
Code PHP:foreach ($_POST['path'] as $key => $value) { $path = $_FILES['path']['name'][$key]; }
it doesn't store the value in $_FILES. But when i do the following, it does read the value of 'path'.
Code PHP:foreach ($_POST['path'] as $key => $value) { $path = $_POST['path'][$key]; }
Basically i want to store the value of a input field into $_FILES. How can i go on about doing this? thanks![]()









Bookmarks