Hello, can somebody help me I'm kind of new in PHP scripting.
This is the page i have problems with.
http://www.okieview.com/complete/ind...n%2fFast_Food/
my list keeps going down and i want to break into 4 columns
This is what my script looks like
<?php } ?>
<?php if ($rec->rows > 0 && $web->rows > 0){ echo("<hr />"); } ?>
<?php if ($web->rows > 0){ ?>
<ul>
<?php do { ?>
<li><a href="<?=$web->fields["url"]?>" target="<?=$config["linktarget"]?>">
<?=$web->fields["website"]?>
</a>
<?=$web->fields["description"]?>
</li>
<?php } while ($web->loop()); ?>
</ul>
<?php } ?>
<?php
if ($config["showstats"] == "true" && $_GET["topic"] == ""){
$sql = "SELECT topicid FROM " . $dbprefix . "topics";
$sta = $db->execute($sql);
$st1 = number_format($sta->rows);
$sta->clear();
$sql = "SELECT linkid FROM " . $dbprefix . "links";
$sta = $db->execute($sql);
$st2 = number_format($sta->rows);
$sta->clear();
$sql = "SELECT queueid FROM " . $dbprefix . "queue";
$sta = $db->execute($sql);
$st3 = number_format($sta->rows);
$sta->clear();
?>
Can Somebody Help? Thanks