예제 #1
0
     break;
 case "1":
     reset_cachetimestamp($row['id']);
     $country = $movie->country();
     $director = $movie->director();
     $creator = $movie->creator();
     // For TV series
     $write = $movie->writing();
     $produce = $movie->producer();
     $cast = $movie->cast();
     $plot = $movie->plot();
     $plot_outline = $movie->plotoutline();
     $compose = $movie->composer();
     $gen = $movie->genres();
     //$comment = $movie->comment();
     $similiar_movies = $movie->similiar_movies();
     if (($photo_url = $movie->photo_localurl()) != FALSE) {
         $smallth = "<img src=\"" . $photo_url . "\" width=\"105\" onclick=\"Preview(this);\" alt=\"poster\" />";
     } else {
         $smallth = "<img src=\"pic/imdb_pic/nophoto.gif\" alt=\"no poster\" />";
     }
     $autodata = '<a href="http://www.imdb.com/title/tt' . $thenumbers . '">http://www.imdb.com/title/tt' . $thenumbers . "</a><br /><strong><font color=\"navy\">------------------------------------------------------------------------------------------------------------------------------------</font><br />\n";
     $autodata .= "<font color=\"darkred\" size=\"3\">" . $lang_details['text_information'] . "</font><br />\n";
     $autodata .= "<font color=\"navy\">------------------------------------------------------------------------------------------------------------------------------------</font></strong><br />\n";
     $autodata .= "<strong><font color=\"DarkRed\">" . $lang_details['text_title'] . "</font></strong>" . "" . $movie->title() . "<br />\n";
     $autodata .= "<strong><font color=\"DarkRed\">" . $lang_details['text_also_known_as'] . "</font></strong>";
     $temp = "";
     foreach ($movie->alsoknow() as $ak) {
         $temp .= $ak["title"] . $ak["year"] . ($ak["country"] != "" ? " (" . $ak["country"] . ")" : "") . ($ak["comment"] != "" ? " (" . $ak["comment"] . ")" : "") . ", ";
     }
     $autodata .= rtrim(trim($temp), ",");