I have a while loop and want to display one mysql field in 3 columns. How can I do that?
As in you want to repeatedly display the same field in 3 columns? That sounds easy enough.
What exactly are you trying to do?
I want to display the retrieved information in 3 columns instead of the normal 1.
<tr> <td> <php echo $row[0]; ?> </td> <td> <php echo $row[1]; ?> </td> <td> <php echo $row[2]; ?> </td> </tr>