Greetings !
i hope someone can give me some insights as to what upload method to use of these and if any comparison
I found that :
if (isset($_FILES['userfile'])) {
works for me in some applications where:
if(isset($_POST['submit']))
does not
How secure is the first method ?
Thank you very much in advance !
i hope someone can give me some insights as to what upload method to use of these and if any comparison
I found that :
if (isset($_FILES['userfile'])) {
works for me in some applications where:
if(isset($_POST['submit']))
does not
How secure is the first method ?
Thank you very much in advance !
Comment