Beste leden ,
ik heb nu veel opties maar pagina wordt te groot hoe kan ik zorgen dat een scroll bar maken ?
hier het script :
PHP
<table width="200" border="0">
<?
echo" <tr>";
$sql = $db->query("SELECT artiest, gekeurd, gemeld, titel, id FROM songs WHERE artiest='".$show['artiest']."' and id != '".$_GET['id']."'LIMIT 10");
while($show = $sql->fetch( PDO::FETCH_ASSOC )){
echo "
<td><img src=".$show['img']." width='86' height='56'></td>
<td><h3><a href='?url=songs&id=".$show['id']."'>".$show['titel']."</a></h3>
<a href='?url=artiest&id=".$show['artiest']."'>".$show['artiest']."</a></td>
</tr>
";
}
?>
Toon Meer
thnxx:cheer: