i have a site thats look fine with ie 6 and firefox
but not with ie7 and opera
this is the code of the php file
this code show the new games in the side bar ..Code:$sql = mysql_query("SELECT * FROM ava_games WHERE published=1 ORDER BY id desc LIMIT 6"); while($row = mysql_fetch_array($sql)) { $abcd= $row['name']; $abcd = str_replace (" ", "-", $abcd); if ($seo_on == 0) { $url = games.php?task=view&id='.$row['id'].''; } else { $url = 'view/'.$row['id'].'/'.$abcd.'.htm'; } echo ' <a href="'.$site_url.'/'.$url.'"><img src="'.$row['image'].'" width="100" height="75" alt="'.$row['name'].'"></a>'; } ?>
i want to add table code to this file ..
somethig like that:
<table width ....... >
echo ' <a href="'.$site_url.'/'.$url.'"><img src="'.$row['image'].'" width="100" height="75" alt="'.$row['name'].'"></a>';
</table>
firefox
http://img136.imageshack.us/my.php?image=26414917.jpg
opera
http://img136.imageshack.us/my.php?image=91489445.jpg
tnx


Reply With Quote
Bookmarks