Help with php image uploader coding

Heya,

I’ve been trying to work on creating thumbnail img uploaders… Im wanting to make the coding output aka the echo after uploading the image come out with the following result:

[code]Full size Image:

Thumnail Image: [/code]

The current code I have is the following:

[code]<?php

if ((($_FILES[“file”][“type”] == “image/gif”)
|| ($_FILES[“file”][“type”] == “image/jpeg”)
|| ($_FILES[“file”][“type”] == “image/pjpeg”))
&& ($_FILES[“file”][“size”] < 5000000))
{
if ($_FILES[“file”][“error”] > 0)
{
echo "Return Code: " . $_FILES[“file”][“error”] . “
”;
}
else
{

if (file_exists("upload/" . $_FILES["file"]["name"]))
  {
  echo $_FILES["file"]["name"] . "File name already exists!";
  }
else
  {
  move_uploaded_file($_FILES["file"]["tmp_name"],
  "upload/" . $_FILES["file"]["name"]);
  echo "[img]http://main website address here/" . "upload/" . $_FILES["file"]["name"];
  }
}

}
else
{
echo “Invalid file”;
}
?>[/img][/code]

What do I need to change in the above to make echo that first code. I’d appreciate all the help I can get in this

Just add it below the 1st statement in the success echo

thanks for replying herghost!

Please forgive me I am a little slow at coding, I don’t quite understand what you mean below the 1st statement in the success echo… can you please give me an example of what the entire script should look like.

Thanks in advance!! I have been racking my brains for months on trying to get this right

Well here:
[php]else
{
move_uploaded_file($_FILES[“file”][“tmp_name”],
“upload/” . $_FILES[“file”][“name”]);
echo “[img]http://main website address here/” . “upload/” . $_FILES[“file”][“name”];
}[/php]

[img] and [url] tags will not work so you will need something like

[php]
{
move_uploaded_file($_FILES[“file”][“tmp_name”],
“upload/” . $_FILES[“file”][“name”]);
echo “”;
echo “”;
}[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service