Jump to content

php loop troubles


danthorpe2002

Recommended Posts

Hi, i have a loop running and i want to stop it. insert a new column in a table and then resume the loop from were it stopped how can i do thiis?? This is the current code


<td width="130" align="center">
<?php
echo mysql_error();
$num = mysql_num_rows($result);

$j=5;
while ($j < $num) {
$title=mysql_result($result, $j, 0);
$desc=mysql_result($result, $j, 1);
$hasImage=mysql_result($result, $j, 2);
?>
<p><a href="play.php?game=<?php echo $title;?>" title="Play <?php echo $title;?> Flash Game"/><?php echo $title;?><br /><img src="preview/<?php echo($hasImage > 0? $title : "missing");?>.gif" alt="Play <?php echo $title;?> Flash Game" width="90" height="90" border="0"/></p>
<?php
$j++;
}
?>
<td align="center">
<?php
echo mysql_error();
$num = mysql_num_rows($result);

$j=5;
while ($j < $num) {
$title=mysql_result($result, $j, 0);
$desc=mysql_result($result, $j, 1);
$hasImage=mysql_result($result, $j, 2);
?>
<p><a href="play.php?game=<?php echo $title;?>" title="Play <?php echo $title;?> Flash Game"/><?php echo $title;?><br /><img src="preview/<?php echo($hasImage > 0? $title : "missing");?>.gif" alt="Play <?php echo $title;?> Flash Game" width="90" height="90" border="0"/></p>
<?php
$j++;
}
?>
</td>
</td>
Link to comment
https://forums.phpfreaks.com/topic/12200-php-loop-troubles/
Share on other sites

Ok, i just need the loop to run 5 times, then insert a new column and resume the loop but i don''t know how to do this, i have indicated in the code were i need the loop to resume

<td width="130" align="center">
<?php
echo mysql_error();
$num = mysql_num_rows($result);

$j=5;
while ($j < $num) {
$title=mysql_result($result, $j, 0);
$desc=mysql_result($result, $j, 1);
$hasImage=mysql_result($result, $j, 2);
?>
<p><a href="play.php?game=<?php echo $title;?>" title="Play <?php echo $title;?> Flash Game"/><?php echo $title;?><br /><img src="preview/<?php echo($hasImage > 0? $title : "missing");?>.gif" alt="Play <?php echo $title;?> Flash Game" width="90" height="90" border="0"/></p>
<?php
$j++;
}
?>
<td align="center">

//LOOP SHOULD CONTINUE HERE

<?php
echo mysql_error();
$num = mysql_num_rows($result);

$j=5;
while ($j < $num) {
$title=mysql_result($result, $j, 0);
$desc=mysql_result($result, $j, 1);
$hasImage=mysql_result($result, $j, 2);
?>
<p><a href="play.php?game=<?php echo $title;?>" title="Play <?php echo $title;?> Flash Game"/><?php echo $title;?><br /><img src="preview/<?php echo($hasImage > 0? $title : "missing");?>.gif" alt="Play <?php echo $title;?> Flash Game" width="90" height="90" border="0"/></p>
<?php
$j++;
}
?>
</td>
</td>
Link to comment
https://forums.phpfreaks.com/topic/12200-php-loop-troubles/#findComment-46484
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.