Onbekend |
|
Bedoel je op deze manier???
<html>
<head>
<title></title>
</head>
<body>
<style type="text/css">
fotoContainer {
*/hier je container settins*/
border: 1px solid #000;
float: left;
width:202px;
height: 230px;
}
fotoPlaatje {
*/hier de code van je plaatje*/
width:200px;
height:200px;
fotoTitel
color:#000
}
</style>
<?php
$sitepad = '/uploadimages/';
$sql = "SELECT * FROM artikel LIMIT 0, 21";
$resultaat = mysql_query($sql); // voer SQL code uit
if (mysql_num_rows($resultaat) > 0) {
echo '<table border="0" table width="200" cellpadding="0" cellspacing="0"
style="background-color: indianred">';
while ($rij = mysql_fetch_array($resultaat)) {
echo '<tr>';
echo '<td><a href="winkelwagen.php?artikelid=' . $rij['Artikel_id'] . '">'.$rij
['Naam'].'</a> ';
echo '<td>';
$sql = "SELECT * FROM afbeelding WHERE Artikel_id=".$rij['Artikel_id'];
$afbeeldingen = mysql_query($sql);
if (mysql_num_rows($afbeeldingen) > 0) {
while ($afb_rij = mysql_fetch_array($afbeeldingen)) {
$bestandsnaam = $sitepad.$afb_rij
['Afbeelding_id'].$afb_rij['Bestandstype'];
echo '<a href="winkelwagen.php?artikelid='.$rij
['Artikel_id'].'"><IMG src="'.$bestandsnaam.'" WIDTH="70" HEIGHT="70"
ALT="logo"></a> ';
}
} else {
echo 'Geen afbeeldingen';
}
echo '</td></tr>';
}
echo '</table>';
}
mysql_close($db);
?>
</body>
</html>
<html> <head> <title></title> </head> <body> <style type="text/css"> fotoContainer { */hier je container settins*/ border: 1px solid #000; float: left; width:202px; height: 230px; } fotoPlaatje { */hier de code van je plaatje*/ width:200px; height:200px; fotoTitel color:#000 } </style> <?php $sitepad = '/uploadimages/'; $sql = "SELECT * FROM artikel LIMIT 0, 21"; echo '<table border="0" table width="200" cellpadding="0" cellspacing="0" style="background-color: indianred">'; echo '<td><a href="winkelwagen.php?artikelid=' . $rij['Artikel_id'] . '">'.$rij ['Naam'].'</a> '; $sql = "SELECT * FROM afbeelding WHERE Artikel_id=".$rij['Artikel_id']; $bestandsnaam = $sitepad.$afb_rij ['Afbeelding_id'].$afb_rij['Bestandstype']; echo '<a href="winkelwagen.php?artikelid='.$rij ['Artikel_id'].'"><IMG src="'.$bestandsnaam.'" WIDTH="70" HEIGHT="70" ALT="logo"></a> '; } } else { echo 'Geen afbeeldingen'; } } } ?> </body> </html>
|