Would like to format uploaded files in a table...
| File Name | Uploaded | File Group | Download |
|---|---|---|---|
| Presentation.ppt | 12/12/2012 | Company Presentations | -Download Button Here- |
| Presentation 2.ppt | 1/1/2013 | Company Presentations | -Download Button Here- |
| Earnings.ppt | 2/12/2013 | Company Presentations | -Download Button Here- |
| Our Security.ppt | 4/14/2013 | Company Presentations | -Download Button Here- |
Hello,
I have created a PHP script very similar to this one:
<?php
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_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";
}
?>
And would like to display all of the uploaded files in a table with basic information about them [EX: Title] and a download link...
Although not a neccesity, I would like the table to alternate colors between files :]
: Look at the top of the page for something of an example....
[I know the file types do not match :] ]
If you know anything that could help me with this, please post it :]
Thank You
