I'm using 'Repeat reagion' in dreamweaver 'Server Behaviour' and get the script as follow:
<?php do { ?>
<td align="center">
<img src="<?php echo $row_recordset['data1']; ?>" alt="<?php echo $row_recordset['data2']; ?>" title="<?php echo $row_recordset['data2]; ?>" height="160" onclick="openWin(500,500,'<?php echo $row_recordset['data3']; ?>')">
<p><?php echo $row_recordset['data2']; ?></p></td>
<?php } while ($row_recordset = mysql_fetch_assoc($recordset)); ?>
As a result, I got 5 records of my database appear in a row in browser.
How to create several next rows with 5 records on every each row.
Can anybody help me? Pls.