Jump to content

Recommended Posts

hey guys, i have a query set up to retreve user details, but now i need to put these details into a HTML table, set out like this..

 

user1 | user2 | user3 | user4 | user5

------------------------------------------------

user6 | user7 | user8 | user9 | user10

 

...so every 5th result starts a new row (<tr>)

 

all i have at the moment is a simple mysql array output:

while($result = mysql_fetch_array($search))
{
 	echo $result['username'];
}

 

can anyone help with this please?

thanks

Link to comment
https://forums.phpfreaks.com/topic/196638-mysql-to-html-table-using-php/
Share on other sites

$count = 0;
echo "<table><tr>";
while($result = mysql_fetch_array($search))
{
 	echo "<td>".$result['username']."</td>";
                if (($count + 1) % 5 == 0)
                        echo "</tr><tr>";
                $count++;
}
echo "</tr></table>";

 

 

something like that should do the trick

 

EDIT: forgot to increment count and fixed a syntax error

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.