示例#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/>
示例#2
0
文件: home.php 项目: JelleES/bioscoop
<?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';
?>
 
示例#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';