Confirm that you're using the proper header information in your HTML <form>
tag..
<form action="upload.php" method="POST" enctype="multipart/form-data">
-Kevin

----- Original Message -----
From: "Shaun Thornburgh" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, November 01, 2002 1:51 PM
Subject: [PHP] Re: uploading files


> My apologies, here is the code!
>
>  //copy image to server
>  if ($image != "none") {
>   if (copy ($image, $dir.$image_name)){
>      echo "<p>File upload successful!</p>";
>   } else {
>    echo "<p>File upload unsuccessful!</p>";
>   }
>
>   //new name of image
>   $new_name = "$property_id-$category_id-$sub_category_id.jpg";
>
>   //rename the file
>   rename($dir.$image_name, $dir.$new_name);
>  }
>
>
> "Shaun Thornburgh" <[EMAIL PROTECTED]> wrote in message
> news:20021101205003.11053.qmail@;pb1.pair.com...
> > I am attempting to upload image files to the server from a users browser
> > using the following code, however, the images seem to get corrupted,
they
> > look completely different and the file sizes are generally smaller, also
> it
> > sometimes says file upload unsuccessful, even when it does upload the
> file?
> >
> > Any ideas?
> >
> > Thank you
> >
> >
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to