Re: [PHP] Validate if the field of a form is empty

2010-07-13 Thread te0t3l
It works fine for me,

foreach ( $_FILES['archivo']['name'] as $file ) {
   //echo $file;
}
if($file == ""){
echo "empty";
}else{
   //continue...
}

Thanks a lot Jim!

Te0


Re: [PHP] Validate if the field of a form is empty

2010-07-12 Thread Jim Lucas
te0t3l wrote:
> Hi, I need to validate a field that work with Multifile plugin of Jquery,
> I want to check if the field is empty with php.
> 
> [code]
> 
> 
> [code]
> 
> I've tried different ways but it does not work:
> for example:
> $field = $_FILES["archivo"]["name"];
> $field = $_FILES["archivo[]"]["name"];
> 
> i dont know how to validate it, any help would be appreciated.
> 
> Thanks,
> 

To see what is happening, look at the output of print_r($_FILES);

But, you should be doing it like this.

foreach ( $_FILES["archivo"] AS $file ) {
  $field = $file['name'];
  ...
}


-- 
Jim Lucas

A: Maybe because some people are too annoyed by top-posting.
Q: Why do I not get an answer to my question(s)?
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php