----- Original Message ----- From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>; <php-general@lists.php.net>
Sent: Thursday, March 02, 2006 11:15 PM
Subject: RE: [PHP] Only 4 of 5...


[snip]
while ($dbArray = mysql_fetch_array($querys)) {
     $dbIDPic = $dbArray["IDPic"];
     $dbPicNameSmall = $dbArray["picNameSmall"];
     ?>
     <img src="phonepics/<?php echo $idModel;?>_<?php echo
$dbPicNameSmall;?>" alt="testbild från mobil" border="1" width="120"
height="130">
     <?php
[/snip]

Is $dbIDPic an integer? Does it start with 0 or 1?

Try
$dbArray = mysql_fetch_array($querys);
For($i = 0, $i < count($dbArray), $i++){
echo $dbArray[0] . "\t" . $dbArray[1] . "\n";
}


It gives exactly the same resultset... and it should do right?
but as I understand it For-each is faster?

/G



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to