resize billed upload

Tags:    php

Hej

Jeg har fundet dette script men kunne godt tænke mig at det samtidig med at det uploader kan resize billedet til at være en bredde på 600 px, kan dette lade sig gøre og hvis ja kan i så vise mig hvordan er helt ny i php så please help me.

Her er scriptet

<?php

//This is the directory where images will be saved
$target = "photo/";
$target = $target . basename( $_FILES['photo']['name']);

//This gets all the other information from the form
$name=$_POST['name'];
$email=$_POST['email'];
$phone=$_POST['phone'];
$pic=($_FILES['photo']['name']);

// Connects to your Database
mysql_connect("localhost", "*****", "********") or die(mysql_error());
mysql_select_db("********") or die(mysql_error());

//Writes the information to the database
mysql_query("INSERT INTO employess (name, email, phone, photo) VALUES ('$name', '$email', '$phone', '$pic')");

if(file_exists($target)){
die("Filen findes!");
}
//Writes the photo to the server
if(move_uploaded_file($_FILES['photo']['tmp_name'], $target))
{

//Tells you if its all ok
echo "Billedet ". basename( $_FILES['uploadedfile']['name']). " er blevet uploaded, og teksten er blevet tilføjet databasen";
}
else {


echo "Sorry, there was a problem uploading your file.";
}
?>




t