$no = $_GET["no"];
if ($no != '1' && $no != '2' && $no != '3')
{ header('HTTP/1.0 404 Not Found');
require ("404.php"); }
else
{
echo '
';
echo '
';
if ($no == "1")
{ $plaats = "Panorama Rotterdam in the morning "; }
elseif ($no == "2")
{ $plaats = "Panorama station Delft"; }
elseif ($no == "3")
{ $plaats = "Panorama Rotterdam at night"; }
$pageTitle = $plaats.' | Roview.nl'; // Call this in your pages' files to define the page title
echo '
|
© R. Vermeulen / All right reserved / www.roview.nl
|
';
}
?>