When you call break, you're ending the loop. You never even get as far as continue (let alone as far as the second <TD> block).
On Thursday, January 23, 2003, at 12:02 AM, Remon Redika wrote:
I have put Image inside of my loop... <TD><image src="blabla.jpg"></td> and that image located between <?$row['field1?> and <?$row['field2']?> I want the image not doing loop too. cause i just need one image.., I just do looping for my data: <?$row['field1?> and <?$row['field2']?> <? while ($row = mysql_fetch_array($myquery)){ ?> <tr> <td class="subtitle" width="50%"> <?=$row['field1']?> </td> <?break;?> <td rowspan="2" valign="top" align="right"> <table border="0" cellpadding="0" cellspacing="0"> <tr> <TD><image src="blabla.jpg"></td> </tr> </table> </td> </tr> <?continue;?> <tr> <td class="body" width="50%"> <p align="justify"><?=$row['field2']?></p> </td> </tr> <? } ?>John W. Holmes writes:The solution is to take out your break... why is it there?? ---John W. Holmes... PHP Architect - A monthly magazine for PHP Professionals. Get your copy
today. http://www.phparch.com/
-----Original Message-----
From: Reymond [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, January 22, 2003 10:45 PM
To: [EMAIL PROTECTED]
Subject: [PHP] continue after break Hi everyone, I made a while loop and i'd like to know how to continue looping after
Ibreak it, and . Here is my script :
I found just break looping on my page, can't continue :( <?
while ($row = mysql_fetch_array($myquery)){
?>
<tr>
<td class="subtitle" width="50%">
<?=$row['field1']?>
</td>
<?break;?>
<td rowspan="2" valign="top" align="right"> <table border="0" cellpadding="0"
cellspacing="0">
<tr>
<TD><image src="blabla.jpg"></td>
</tr>
</table>
</td>
</tr>
<?continue;?> <tr>
<td class="body" width="50%">
<p align="justify"><?=$row['field2']?></p>
</td>
</tr>
<?
}
?> --
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
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php