Hi everyone,

I made a while loop and i'd like to know how to continue looping after I
break 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

Reply via email to