ich sags gleich ich bin noch anfänger und ich hab hier einen fehler und ich weiß nicht wo:
anstatt $file2 in einer schleife durchlaufen zu lassen, nimmt er nur die erste und fügt es immer wieder ein:
Folgende Dateien wurden in die Datenbank eingefügt:
tn_tagot02_PB230001.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230002.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230003.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230004.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230005.JPG - big_tagot02_PB230001.JPG
...
mfg & thx
PHP-Code:
<?php
$handle1=opendir('../../../_picture/galerie/big/tagot/02/');
$handle2=opendir('../../../_picture/galerie/thumb/tagot/02/');
echo "Folgende Dateien wurden in die Datenbank eingefügt:<br>\n";
while ($file1 = readdir ($handle1)) {
if ($file1 != "." && $file1 != "..") {
while ($file2 = readdir ($handle2)) {
if ($file2 != "." && $file2 != "..") {
mysql_query("UPDATE `galerie` SET `big` = '/tagot/02/$file2'");
echo $file2." - ".$file1."<br>\n";
}
}
}
}
mysql_close();
closedir($handle1,$handle2);
?>
anstatt $file2 in einer schleife durchlaufen zu lassen, nimmt er nur die erste und fügt es immer wieder ein:
Folgende Dateien wurden in die Datenbank eingefügt:
tn_tagot02_PB230001.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230002.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230003.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230004.JPG - big_tagot02_PB230001.JPG
tn_tagot02_PB230005.JPG - big_tagot02_PB230001.JPG
...
mfg & thx
Kommentar