Jump to content

[SOLVED] php num rows


onthespot

Recommended Posts

Hey guys, I have included num rows in my script.

 

<?php
$leagues = mysql_query("SELECT `comp_name`, `game`, `format` FROM `competitions` WHERE `comp_type` = 'league' AND format = 'xbox 360'");
$num_rows = mysql_num_rows($leagues);
?>

<table cellspacing="10" width="300">
<tr>
<td></td>
<td></td>
<td></td>
</tr><?

if ($num_rows > 0)
{
while( $row = mysql_fetch_assoc($leagues)) {
extract($row);
$info = explode("_",$row[comp_name]);


?>
<tr>
<td><A HREF="league.php?comp=<? echo $comp_name; ?>"><? echo $info[2]; ?></A></td>
<td><? echo $info[1]; ?></td>
<td><? echo $info[0]; ?></td>
</tr>
<?
}
?>
</table>
<?
}
else
{
echo "There are currently no Xbox 360 Leagues";
}
?>

 

Problem is that with the numrows in there, it messes my css up.

So there must be a reason including it? Can you see anything that isn't what it should be?

Link to comment
Share on other sites

Problem is that with the numrows in there, it messes my css up.

So there must be a reason including it? Can you see anything that isn't what it should be?

HUh!

I don't see any CSS and have no idea how mysql_num_rows would affect CSS..

 

I would assume you mean the table.. without see more code or knowing whats wrong i would have to guess and say move the open table tag into the if statement ie

<?php
$leagues = mysql_query ( "SELECT `comp_name`, `game`, `format` FROM `competitions` WHERE `comp_type` = 'league' AND format = 'xbox 360'" );
$num_rows = mysql_num_rows ( $leagues );
if ($num_rows > 0) {
?>
<table cellspacing="10" width="300">
<tr>
	<td></td>
	<td></td>
	<td></td>
</tr><?php
while ( $row = mysql_fetch_assoc ( $leagues ) ) {
	extract ( $row );
	$info = explode ( "_", $row [comp_name] );

	?>
   <tr>
	<td><A HREF="league.php?comp=<?php 	echo $comp_name; ?>"><?php echo $info [2];?></A></td>
	<td><?php echo $info [1]; ?></td>
	<td><?php	echo $info [0]; ?></td>
</tr>
   <?php
}
?>
</table>
<?php
} else {
echo "There are currently no Xbox 360 Leagues";
}
?>

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.