Quote:
Originally Posted by poyzn
PHP Code:
$result = mysql_query("SELECT * from patterns WHERE cattxt = 'Wreaths' ORDER BY dsptxt");
?><table><?
while($row = mysql_fetch_array($result))
{
?><tr><td><?= $row['lnktxt'] ?></td><td><?= $row['dsptxt'] ?></td></tr><?
}
?></table>
|
While this does break up data into two columns, it also breaks my links so I have the URL on one side and the display text on the other, so not really what I am looking for. But thank you for helping.