sto usndo questo script per impaginare su due colonne degli articoli, però quando lo avvio con easy php non mi funziona come mai ?
ovviament el'ho modificato in base al mio db
PHP:
<?php
@include 'config.inc.php';
$colonne = 2;
$sql = "SELECT titolo FROM articoli";
$res = @mysql_query($sql);
$righe = @mysql_num_rows($res);
$rs = @ceil($righe / $colonne);
while($r = @mysql_fetch_array($res)) {
$data[] = $r['titolo'];
}
echo "<table>\n";
for($i = 0; $i < $rs; $i++) {
echo "<tr>\n";
for($j = 0; $j < $colonne; $j++) {
if(isset($data[$i + ($j * $rs)])) {
echo "<td>" . $data[$i + ($j * $rs)] . "</td>\n";
}
}
echo "</tr>\n";
}
echo "</table>\n";
?>
ovviament el'ho modificato in base al mio db