Upload Pictures/Videos
Alright, I spoke with a friend regarding an issue I have when uploading Pictures/Videos; He told me its unlikely you can check in PHP the size of the file you're uploading before sending it to the server.. Can you guys help?
Also, without pushing it too far, I have the standard
$destination = 'Pictures'."/".$_FILES['pix']['name'];
$temp_file = $_FILES['pix']['tmp_name'];
move_uploaded_file($temp_file,$destination);
If anyone got a better script plllease!
|