Hi,
im in trouble to get my Script working the way I want it to.
I got a MySQL table with 3 field - id, headline, article. Now I want to get two Headlines listet side by side, the next 2 in the following row and so on, but I'm to stupid...
<?php
require("$DOCUMENT_ROOT/admin/config.inc.php");
mysql_select_db($database,$serverid);
$result = mysql_query("SELECT * FROM td_rund");
while($row = mysql_fetch_array($result)) {
$id = $row['id'];
$headline = $row['headline'];
?>
<table cellspacing="2" cellpadding="2" width="100%" class="main">
<tr>
<td><? echo ($headline);?></td>
</tr>
<?PHP
}
?>
How do I realize it???
headline1 headline2
headline3 headline4
...
TIA
Digi