$r_Content = mysql_query("SELECT * FROM inhoud WHERE id = 2");
$row_Content = mysql_fetch_object($r_Content);
echo "
".stripslashes($row_Content->titel)."
";
$r_GetLastItem = mysql_query("SELECT * FROM afbeeldingen_paintings WHERE Bestand_klein != '' ORDER BY Id DESC");
$row_Item = mysql_fetch_object($r_GetLastItem);
?>
 |
echo $row_Item->Titel; ?>
echo $row_Item->Bijschrift; ?>
|
|
More paintings » |
echo stripslashes($row_Content->inhoud);
?>
|
$r_GetLastItem = mysql_query("SELECT * FROM afbeeldingen_paintings ORDER BY Datum DESC");
while ($row_Item = mysql_fetch_object($r_GetLastItem)) {
//$jaar = substr($row_Item->Datum,0,4);
//$dag = substr($row_Item->Datum, 6,2);
//$maand = substr($row_Item->Datum, 4,2)
?>
 |
|
echo $dag." ".getMonthName($maand)." ".$jaar; ?>
echo stripslashes($row_Item->Titel); ?>
echo stripslashes($row_Item->Bijschrift); ?>
|
} ?>