currently i have php validation as follows
if ($_FILES["file"]["size"] > 5120)
{
$_SESSION['error'] = 'Upload FAILED, file is too large !';
header("Location: upload.php");
exit;
}
But this does not seem to stop any large files being uploaded! any help much appreciated!!