Hi, I have a pretty simple application that allows my users to upload images and i'm able to succesfull upload images to a new dir to be outputted. But as to save on download time and server space is there a simple piece of code I can add to the below code that will resize every image on uploded to 460(w) x 300 (h) from my users
<?php
if ((($_FILES["article_image"]["type"] == "image/gif")
|| ($_FILES["article_image"]["type"] == "image/jpeg")
|| ($_FILES["article_image"]["type"] == "image/pjpeg"))
&& ($_FILES["article_image"]["size"] < 5000000))
{
move_uploaded_file($_FILES["article_image"]["tmp_name"],
"images/" . $_FILES["article_image"]["name"]);
}
?>
Thanks in advance for any help and suggestions