Thanks bradgrafelman, I am looking about how to upload files,
I just have more a question,
I am trying to do as follow:
$attachment = $POST['file'];
OR
$attachment = $POST['file']['name'];
But in both cases the '$attachment' variable is getting a null value =S
PS: I am unable to recover the 'file' value but I am able to recover another values, for example:
It is working fine - $name = $POST['name']; $email = $POST['email'];
Thanks again =)