hi
i have tried to resize a photo from 640x480 to 320x240 while uploading it... but I have failed, here is the uploading script:
if ($POST['upload'] == "2"){
$poza = $FILES['poza']['tmp_name'];
if ($poza != ""){
$tip = $FILES['poza']['type'];
$ext = substr($tip,0,5);
if ($ext == "image"){
$new_poza = "images/".$FILES['poza']['name'];
move_uploaded_file($poza,$new_poza);
}
}
}
How can I resize it before moving?
thanks