From: [EMAIL PROTECTED]
Operating system: linux
PHP version: 4.0.1pl2
PHP Bug Type: Unknown/Other Function
Bug description: while and multiple conditions
$i = 0;
$NR_CASES = 5;
while( $row = mysql_fetch_object($queryh, MYSQL_ASSOC) && $i <
$NR_CASES ) {
$i++;
?>
<tr align="left">
<td>
<FONT SIZE = "2">
<? echo $i . ": " . $row->head; ?>
</FONT>
</td>
</tr>
<?
}
if i dont include && $i < $NR_CASES, $row->head will print.
if i include it (like now), i wont get anything.
wierd huh ?
im sorry i have no clue about the mods etc for php, im not the one who compiled it
here.
--
Edit Bug report at: http://bugs.php.net/?id=9306&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]