You are missing a $ before the targetPath variable on line 2. This is giving you the unexpected '=' error.
Your target path has a trailing '/', so no need to add this in the moveuploadedfile() function when adding the actual filename onto the path.
Try this:-
<?php
$targetPath = "useruploads/"; // It must be writable for sending file. (chmod 777)
if(is_uploaded_file($_FILES['file']['tmp_name']))
{
@move_uploaded_file($_FILES['file']['tmp_name'],$targetPath.$_FILES['file']['name']);
}
?>
If that doesn't work, try setting your target path to a full filesystem path. From your earlier posts, I think this may be:-
/home/tayfon/public_html/useruploads/