Is this right? will this work?
<?php if (isset($userfile)); { copy($userfile, "../../images/news/".$userfile_name . ""); echo " " . $userfile . " uploaded succesfully<br>"; } else { echo "No File Selected, File Upload Failed"; exit; } ?>
What version of PHP are you using. Accoring to the PHP Manual the latest PHP versions use a slightly different function [man]move_uploaded_file()[/man].
Are you talking about 4.3.2
The version mentioned in the [man]move_uploaded_file[/man] page.