View Single Post
10-09-2006, 08:16 PM
#9
localhost is offline localhost
localhost's Avatar
Status: Dediport Hosting
Join date: Jul 2006
Location: Berkshire
Expertise: programming, business
Software: Dreamweaver
 
Posts: 1,316
iTrader: 17 / 100%
 

localhost is on a distinguished road

  Old

lol,

Ive written an image upload script before when I was bored, Let me dig it up,

Here:
PHP Code:
<?
//print_r($_POST);

if($_POST["action"] == "Upload Image")
{
unset(
$imagename);

if(!isset(
$_FILES) && isset($HTTP_POST_FILES))
$_FILES $HTTP_POST_FILES;

if(!isset(
$_FILES['image_file']))
$error["image_file"] = "An image was not found.";


$imagename basename($_FILES['image_file']['name']);
//echo $imagename;

if(empty($imagename))
$error["imagename"] = "The name of the image was not found.";

if(empty(
$error))
{
$newimage "images/" $imagename;
//echo $newimage;
$result = @move_uploaded_file($_FILES['image_file']['tmp_name'], $newimage);
if(empty(
$result))
$error["result"] = "There was an error moving the uploaded file.";
}

}

?>


<form method="POST" enctype="multipart/form-data" name="image_upload_form" action="<?$_SERVER["PHP_SELF"];?>">
<p><input type="file" name="image_file" size="20"></p>
<p><input type="submit" value="Upload Image" name="action"></p>
</form>

<?
if(is_array($error))
{
while(list(
$key$val) = each($error))
{
echo 
$val;
echo 
"<br>\n";
}
}
?>
Anyone else?

** Awaiting testemonia Marky **