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

Reply via email to