$file_ext=strtolower(end(explode('.',$_FILES['image']['name'])));
http://www.tutorialspoint.com/php/php_file_uploading.htm <-- In this tutorial, the above statement checks whether a file extension is allowed according to the $expension definitions, but I get an error:
Strict Standards: Only variables should be passed by reference in /home/tstsit82/public_html/register.php on line 33
The code works, but this warning also outputs. What is the problem and solution?
Thanks