Hallo, ich habe ein Problem mit dem Pro-Auctionscript. Und zwar wenn ich jetzt ein bild hochladen möchte kommt immer diese Fehlermeldung: Warning: mysql_result() [function.mysql-result]: Unable to jump to row 0 on MySQL result index 14 in C:\apachefriends\xampp\htdocs\auction\sell.php on line 643
Er will die Bilder gar nicht uploaden, hier noch ein auszug aus dem script: // Bild 1 wirklich speichern
$ext = ($inf[2]==1)?".gif":".jpg";
$fname = $image_upload_path.$auction_id.$ext;
if (file_exists($fname))
unlink ($fname);
copy ($userfile, $fname);
$uploaded_filename = $auction_id.$ext;
$file_uploaded = true;
Ich benutze php 5
Ich hoffe jemand kann mir helfen!
Danke
Er will die Bilder gar nicht uploaden, hier noch ein auszug aus dem script: // Bild 1 wirklich speichern
$ext = ($inf[2]==1)?".gif":".jpg";
$fname = $image_upload_path.$auction_id.$ext;
if (file_exists($fname))
unlink ($fname);
copy ($userfile, $fname);
$uploaded_filename = $auction_id.$ext;
$file_uploaded = true;
Ich benutze php 5
Ich hoffe jemand kann mir helfen!
Danke
Kommentar