Jump to content

Mast3r Betty

Members
  • Posts

    2
  • Joined

  • Last visited

Mast3r Betty's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Awesome, I'm going to try that out right now. Thank you.
  2. Hello, I just got into uploading images onto my website, and ran into a little problem with the file names being unique. How would I make it so that when a file is uploaded, it is renamed to a random number (or something equal)?I'm using this nice code from W3; <?phpif (($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/jpeg")&& ($_FILES["file"]["size"] < 20000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />"; if (file_exists("upload/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"]); echo "Stored in: " . "upload/" . $_FILES["file"]["name"]; } } }else { echo "Invalid file"; }?> Thank you.
×
×
  • Create New...