PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Jim Worthen   EMovies   index.php   Download  
File: index.php
Role: Application script
Content type: text/plain
Description: Main page for getting/displaying data.
Class: EMovies
Retrieve information about movies from Yahoo
Author: By
Last change:
Date: 17 years ago
Size: 350 bytes
 

Contents

Class file image Download
<?php
// In the case that we are not looking up a movie this will be false.
$revLs = true;
require(
"process.php");
   
if (
$revLs) {
?>
<html>
    <head>
        <title><?=$title?></title>
        <link rel="stylesheet" href="<?=$CONFIG['server_url'];?>/emovstyle.css" type="text/css" />
    </head>
    <body>
        <?=$zipForm?>
</body>
</html>
<?php
}
?>