Mailinglisten-Archive |
Bin irgendwie vollkommen überfordert! Ich sende mal den Code! Bin ein völliger Neuling also sagt mir wo ich wie, was und weshalb ändern muß! Auf meinem Compi hats jedenfalls geklappt! Die überreste sieht man ja noch! <?php $did = time(); $weburl = "http://www.2be2.de/sendcard2"; $bildpath = "."; //$weburl = "http://127.0.0.1/test/sendcard2/images/privat"; //$bildpath = "/test/sendcard2/images/privat"; if(isset( $fupload)) { print "path: $fupload<br>\n"; print "name: $fupload_name<br>\n"; print "size: $fupload_size bytes<br>\n"; print "$bildpath<br>\n"; print "type: $fupload_type<p>\n\n"; if($fupload_type == "image/gif") { $dateiendung = "gif"; } if($fupload_type == "image/pjpeg") { $dateiendung = "jpg"; } if($fupload_type == "image/jpeg") { $dateiendung = "jpg"; } if($fupload_type == "image/gif") { copy ( $fupload, "$bildpath/$did.$dateiendung") or die ("Konnte nicht kopieren"); print "<img src=\"$weburl/$did.$dateiendung\"><p>\n\n"; } if($fupload_type == "image/pjpeg") { copy ( $fupload, "$bildpath/$did.$dateiendung") or die ("Konnte nicht kopieren"); print "<img src=\"$weburl/$did.$dateiendung\"><p>\n\n"; } if($fupload_type == "image/jpeg") { copy ( $fupload, "$bildpath/$did.$dateiendung") or die ("Konnte nicht kopieren"); print "<img src=\"$weburl/$did.$dateiendung\"><p>\n\n"; } } echo "<html> <head> <title>Eigenes Bild verschicken!</title> </head> <body> <font face=arial size=2> <form method=\"post\" action=\"sendcard.php\"> <input type=\"hidden\" name=\"image\" value=\"/privat/$did.$dateiendung\"> <input type=\"hidden\" name=\"caption\" value=\"<br><a href=http://www.2be2.de>Verschicke deine eigenen Bilder als Grußkarte!</a>\"> <input type=submit value=Versenden!> </form> </body> </html>"; ?>
php::bar PHP Wiki - Listenarchive