 | Right method to begin server side validation for file uploadWhat is the right way to begin validation for data sent by a multipart/form form. I'll be receiving a file and 1 text identifier from a hidden field.
I can handle checking for file type and size and all else. What I'm asking is the initial code. Form a normal form I usually do this:
<?php
If ($_POST)
{
if (isset($_POST['myField]) && $_POST['myField'] == 1)
{
//Proceed with the rest
}else{
echo 'Error';
}
}
else
{
echo 'Some Error';
}
?>
What's the best way to do it when it come to multipart/form data? How do u pros / experienced guys do it?
Thanks, Norman |
|
|
|
 MVSPremium join:2005-04-18 | You can use the $_FILES array to access the uploaded file. See this page for more information and sample code: »www.php.net/manual/en/features.f···thod.php |
|
 | reply to Nordy PHP manages all the plumbing / decoding for you. You don't have to deal with it. |
|
 | reply to Nordy In the end the $_FILES thingy did the job. Thanks, both of you. |
|