Beispiel #1
0
<?php

include 'header.php';
$id = $_GET["id"];
include 'Bios.class.php';
$bios = new Bios();
echo $bios->getFilmDetail($id);
?>
	
	<br/><br/><br/><br/><br/>
Beispiel #2
0
<?php

include 'header.php';
include 'Bios.class.php';
$bios = new Bios();
?>
	
	<p>
	De twee laatste films:
	</p>
	
	<?php 
$count = $bios->getFilmCount();
echo $bios->getFilmPreview($count);
echo $bios->getFilmPreview($count - 1);
//include '../footer.php';
?>
 
Beispiel #3
0
<?php

include 'header.php';
include 'Bios.class.php';
$bios = new Bios();
$count = $bios->getGenreCount();
for ($i = 1; $i < $count + 1; $i++) {
    echo $bios->getGenreBox($i);
}
//include '../footer.php';