I am just going to change the script type. it throws me off as well, what I liked about it was that it showed me a thumbnail of the file after it was uploaded. with this line. echo "<img src=\"$path1\" width=\"150\" height=\"150\">"; but It's all a bit confusing.
this script worked well when I was uploading one file and it only allowed jpgs and giffs which was perfect. except that it wasn't showing me a thumbnail. can you help me make this into a a script that uploads multiple files, and shows me a thumbnail like the previous one.
here's the script that only allows me to upload one file at a time and under is the upload form I am using for multiple uploads: Thank you in advance.
<?php
if ($_FILES["file"]["error"] > 0)
{
echo "Error: " . $_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 "Stored in: " . $_FILES["file"]["tmp_name"];
}
?>
<?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 10000000))
{
if ($_FILES["file"]["error"] > 0)
{
echo "Error: " . $_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 "Stored in: " . $_FILES["file"]["tmp_name"];
}
}
else
{
echo "Invalid file";
}
?>
<?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 10000000))
{
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";
}
?>
// this is the upload file form that I am using
<form action=" upload_file.php " method="post"
enctype="multipart/form-data">
<strong>multiple Files Upload </strong> <br />
<label for =”file”>File 1:</label>
<input type="file" name="file[]" id="file[]" size="50" />
</td>
<br />
<label for =”file”>File 2:</label>
<input type="file" name="file[]" id="file[]" size="50" />
</td>
<br />
<label for =”file”>File 3:</label>
<input type="file" name="file[]" id="file[]" size="50" /></td>
<br />
<td align="left"><input type="submit" name="Submit" value="Upload" /></td>
</form>