i have used this example
PHP - File Upload to upload a file.
in the upload form i added a hidden object, and gave it a value for example :
<input type="hidden" name="id1" value="5">
how can i read this value on the server side?
Thanks
Peleg
file upload and passing a paramater
Moderator: General Moderators
Re: file upload and passing a paramater
Code: Select all
$hidden_value=$_POST["id5"];- pelegk2
- Forum Regular
- Posts: 633
- Joined: Thu Nov 27, 2003 5:02 am
- Location: Israel - the best place to live in after heaven
- Contact:
Re: file upload and passing a paramater
10X
i forgot that it's a POST method
i forgot that it's a POST method