PHP Classes

File: demo.php

Recommend this page to a friend!
  Classes of Tiago André   PHP IMDB API   demo.php   Download  
File: demo.php
Role: Example script
Content type: text/plain
Description: Demo File
Class: PHP IMDB API
Retrieve movie information from the IMDB API site
Author: By
Last change:
Date: 11 years ago
Size: 125 bytes
 

Contents

Class file image Download
<?php
   
include('imdb.class.php');
   
$imdb=new imdb('hunger games');
    echo
"<pre>";
   
print_r($imdb->get());
    echo
"</pre>";
?>