<form action="<?php echo $PHP_SELF ?>"
enctype="multipart/form-data" method=POST>
<input type=file name=Wallpaper1 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type=file name=Wallpaper2 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type=file name=Wallpaper3 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type="submit" name="senden" value=" Sende Wallpaper " >
</form>
<?php
$WallpaperDir = "Wallpaper";
//---------------------------1
if(isset($Wallpaper1)) {
$dest1 = "$WallpaperDir/$Wallpaper1_name"; // Ladet wallpaper rauf
if (copy($Wallpaper1, $dest1)) {
$newDate1 = filemtime("./$WallpaperDir/$Wallpaper1_name"); // Holt sich das Datum
$fileModDate1 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen1 = GetImageSize("./$WallpaperDir/$Wallpaper1_name"); // Holt die dimension
$width1 = $dimensionen1[0];
$height1 = $dimensionen1[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper1_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width1 x $height1 ";
echo "$fileModDate1<br>";
}
//---------------------------2
if(isset($Wallpaper2)) {
$dest2 = "$WallpaperDir/$Wallpaper2_name"; // Ladet wallpaper rauf
if (copy($Wallpaper2, $dest2)) {
$newDate2 = filemtime("./$WallpaperDir/$Wallpaper2_name"); // Holt sich das Datum
$fileModDate2 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen2 = GetImageSize("./$WallpaperDir/$Wallpaper2_name"); // Holt die dimension
$width2 = $dimensionen2[0];
$height2 = $dimensionen2[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper2_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width2 x $height2 ";
echo "$fileModDate2<br>";
}
//---------------------------3
if(isset($Wallpaper3)) {
$destA3 = "$WallpaperDir/$Wallpaper3_name"; // Lädet wallpaper rauf
if (!copy($Wallpaper3, $destA3)) {
echo "Fehler - kann Datei nicht ablegen\n";
exit;
} else {
$newDate3 = filemtime("./$WallpaperDir/$Wallpaper3_name"); // Holt sich das Datum
$fileModDate3 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen3 = GetImageSize("./$WallpaperDir/$Wallpaper3_name"); // Holt die dimension
$width3 = $dimensionen3[0];
$height3 = $dimensionen3[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper3_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width3 x $height3 ";
echo "$fileModDate3<br>";
}
?>
ich habe 3 upload felder.... nun will ich aber das das upload feld nur wenn es voll ist ausgeführt wird ...
hab das mit if(isset($Wallpaper3)) versucht und noch mit anderen möglichkeiten das klappt anner sehr schöhn bis ich den submit button drücke dann übergeht er diese if(isset($Wallpaper1)) ,2,3 einfach wiso ???
ich versuche mich jetzt schon seit gestern abend daran und komme nicht weiter ((((((((
gruss blume
enctype="multipart/form-data" method=POST>
<input type=file name=Wallpaper1 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type=file name=Wallpaper2 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type=file name=Wallpaper3 runat="server" maxfilesize="350000" accept="image/jpg"/>
<br>
<input type="submit" name="senden" value=" Sende Wallpaper " >
</form>
<?php
$WallpaperDir = "Wallpaper";
//---------------------------1
if(isset($Wallpaper1)) {
$dest1 = "$WallpaperDir/$Wallpaper1_name"; // Ladet wallpaper rauf
if (copy($Wallpaper1, $dest1)) {
$newDate1 = filemtime("./$WallpaperDir/$Wallpaper1_name"); // Holt sich das Datum
$fileModDate1 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen1 = GetImageSize("./$WallpaperDir/$Wallpaper1_name"); // Holt die dimension
$width1 = $dimensionen1[0];
$height1 = $dimensionen1[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper1_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width1 x $height1 ";
echo "$fileModDate1<br>";
}
//---------------------------2
if(isset($Wallpaper2)) {
$dest2 = "$WallpaperDir/$Wallpaper2_name"; // Ladet wallpaper rauf
if (copy($Wallpaper2, $dest2)) {
$newDate2 = filemtime("./$WallpaperDir/$Wallpaper2_name"); // Holt sich das Datum
$fileModDate2 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen2 = GetImageSize("./$WallpaperDir/$Wallpaper2_name"); // Holt die dimension
$width2 = $dimensionen2[0];
$height2 = $dimensionen2[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper2_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width2 x $height2 ";
echo "$fileModDate2<br>";
}
//---------------------------3
if(isset($Wallpaper3)) {
$destA3 = "$WallpaperDir/$Wallpaper3_name"; // Lädet wallpaper rauf
if (!copy($Wallpaper3, $destA3)) {
echo "Fehler - kann Datei nicht ablegen\n";
exit;
} else {
$newDate3 = filemtime("./$WallpaperDir/$Wallpaper3_name"); // Holt sich das Datum
$fileModDate3 = date("d.m.Y",$newDate); // konvertiert Datum
$dimensionen3 = GetImageSize("./$WallpaperDir/$Wallpaper3_name"); // Holt die dimension
$width3 = $dimensionen3[0];
$height3 = $dimensionen3[1];
}
echo "<img src=\"./Wallpaper/$Wallpaper3_name\" align=center border=0 height=230 width=307></a><br>";
echo "$width3 x $height3 ";
echo "$fileModDate3<br>";
}
?>
ich habe 3 upload felder.... nun will ich aber das das upload feld nur wenn es voll ist ausgeführt wird ...
hab das mit if(isset($Wallpaper3)) versucht und noch mit anderen möglichkeiten das klappt anner sehr schöhn bis ich den submit button drücke dann übergeht er diese if(isset($Wallpaper1)) ,2,3 einfach wiso ???
ich versuche mich jetzt schon seit gestern abend daran und komme nicht weiter ((((((((
gruss blume
Kommentar