Hi,
I wanted to display data which is in my db.The format of displaying must be in a div, in that div 3 columns & each column must have 10 rows.Am using this:
while($data = mysql_fetch_array($result)) {
echo $query;
echo ' <tr> <td colspan="3" > <a href="'.$data['MedName'].'" >' . $data['dispname'].' </a> </td>';
echo'</tr>';
}
which is displaying it in a single line. I used even for loop which is displaying again in the single line.What way can be used to print in the above format?