<? /* Example output of the IMDBSearch class takes parameter q: either an imdb id or a movie title Don't modify without written authorization Created by: Randy Gerritse Email: randy@randy.nu ©2003, All rights reserved. ================================================================================ */
include("classes/IMDBSearch.php");
$imdb = new IMDBSearch($_REQUEST["q"]);
echo "<pre>"; print_r($imdb->imdb_result); echo "</pre>"; ?>
|