Jump to content

Display 5 items per row of table


abhi_madhani

Recommended Posts

Hi Friends,

 

I have created a search page, that displays the results for particular entered search terms, something similar to Google Image Search engine.

 

I am trying to display the first five records of the results on 1st row, and next five records on 2nd row, and next five records on 3rd row and so on

 

Can any of you please guide me as to how can I achieve this. I have attached a sample code of my page which reads each record from the database and displays them.

 

 

<?php
echo "		<html>
	<body>
	<table>
	<tr>";
		$viewprodSQL="select * from product where fieldname='term' ";
		$exeviewprodSQL=mysql_query($viewprodSQL) or die (mysql_error);
		while ($thisviewprodarray=mysql_fetch_array($exeviewprodSQL))
		{
echo "				<td>
				<img src=".$imgloc." width='125' height='125'>
			</td>";
		}
echo "		</tr>
	</table>
	</body>
	</html>";
?>

Link to comment
Share on other sites

Put a counter in:

<?php
echo "		<html>
	<body>
	<table>
                <tr>";
		$viewprodSQL="select * from product where fieldname='term' ";
		$exeviewprodSQL=mysql_query($viewprodSQL) or die (mysql_error);
                        $n = 0;
		while ($thisviewprodarray=mysql_fetch_array($exeviewprodSQL))
		{
                            echo "				<td><img src=".$imgloc." width='125' height='125'></td>";
                            $n++;
                            if ($n % 5 == 0) echo '</tr><tr>';    
		}
echo "		</tr>
	</table>
	</body>
	</html>";
?>

 

Ken

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.