Onbekend |
|
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /home/sjloeb/domains/sjloeber.nl/public_html/page5.php on line 14
<?php
$sitepad = '/uploadimages/';
$sql = "SELECT * FROM artikel LIMIT ORDER BY toegevoegd DESC LIMIT 36, 36";
$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: deeppink">';
$i = -1 ;
while ($rij = mysql_fetch_array($resultaat)) {
$i++ ;
if($i %6 == 0)
echo "</tr>" ;
echo '<td>';
$sql = "SELECT * FROM artikel ORDER BY toegevoegd DESC LIMIT 36, 36";
$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="100" HEIGHT="100"
ALT="logo"></a> ';
?>
<?php $sitepad = '/uploadimages/'; $sql = "SELECT * FROM artikel LIMIT ORDER BY toegevoegd DESC LIMIT 36, 36"; echo '<table border="0" table width="200" cellpadding="0" cellspacing="0" style="background-color: deeppink">'; $i = -1 ; $i++ ; if($i %6 == 0) $sql = "SELECT * FROM artikel ORDER BY toegevoegd DESC LIMIT 36, 36"; $bestandsnaam = $sitepad.$afb_rij ['Afbeelding_id'].$afb_rij['Bestandstype']; echo '<a href="winkelwagen.php?artikelid='.$rij ['Artikel_id'].'"><IMG src="'.$bestandsnaam.'" WIDTH="100" HEIGHT="100" ALT="logo"></a> '; ?>
|