I'm new to uploading images via php and was wondering how I could save this file as another name. This is so that all images that are uploaded could be unique. Appreciate the help guys!
{
copy ($_FILES['imageupload']['tmp_name'], "/upload/".$_FILES['imageupload']['name']);
}