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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.