[PHP]<?php
$query = "SELECT * FROM news ORDER BY id DESC LIMIT 0,5";
$result = mysql_query($query) or die('Error, query failed111');
while ($row = mysql_fetch_array($result)) {
echo "<table><tr><td class='mcheader'>".$row."</td>
<td class='maincbbg'>".$row."</td></tr></table>";
}
?>[/PHP]
im using that script as a news script here:
http://cms.vipercreations.com
and its screwed up for some reason, no matter what i do, the news box wont go UNDER the title.
likeso:
http://www.vipercreations.com
help please?!
Comments