Here is Php Codeenter image description here
And Here html code enter image description here
i get this type of error "Notice: Undefined index: file in C:\xampp\htdocs\mobile-shope\reg.php on line 12" can any one solve it.
Here is Php Codeenter image description here
And Here html code enter image description here
i get this type of error "Notice: Undefined index: file in C:\xampp\htdocs\mobile-shope\reg.php on line 12" can any one solve it.
Please make sure that:
file_uploads = On
in your php.ini file.enctype="multipart/form-data"
in your html form.Also try to debug it by using print_r($_FILES);
For more information, checkout this: https://www.w3schools.com/php/php_file_upload.asp
Thanks,