i think i figured that out Mind Freak open index.php and find
Code:
/*************Create the post*****************/
echo '<br /> Creating your Post with Links <br /><br /><hr /><br /><br />';
if ($info != "http://i28.tinypic.com/2qtkghz.png"){
echo '[img]$info[/img]';
}
include_once 'includes/imdb.class.php';
$link = stripslashes($_POST['link']);
if($link)
{
$oIMDB = new IMDB("$link");
if ($oIMDB->_bFound) {
echo '[B]' . $oIMDB->getTitle() . '[/B] - View ' . $oIMDB->getUrl() . '<br />';
echo '[B]Cast:[/B] ' . $oIMDB->getCast(5) . '<br>';
echo '[B]Directors: [/B]' . $oIMDB->getDirector() . '<br>';
echo '[B]Genres: [/B]' . $oIMDB->getGenre() . '<br>';
echo '[B]Plot: [/B]' . $oIMDB->getPlot() . '<br>';
echo '[B]Release Date: [/B]' . $oIMDB->getReleaseDate() . '<br>';
echo '[B]Runtime: [/B]' . $oIMDB->getRuntime() . '<br>';
echo '[B]Tagline: [/B]' . $oIMDB->getTagline() . '<br>';
echo '[B]Year: [/B]' . $oIMDB->getYear() . '<br>';
echo '<br><br>';
}
else {
echo 'Movie or TV Show not found!';
}
}
if ($screenshots != "http://i27.tinypic.com/ipoxm8.png"){
echo '[img]$screenshots[/img]';
}
if ($download != "http://i27.tinypic.com/24mdv20.png"){
echo '[img]$download[/img]';
}
enter your image links at $info !="link here"
$screenshots !="link here"
$idownload !="link here"