getTitle() public method

public getTitle ( boolean $bForceLocal = false ) : string
$bForceLocal boolean Try to return the original name of the movie.
return string The title of the movie or $sNotFound.
    }
} else {
    echo '<p>Movie not found!</p>';
}
?>

<hr>

<?php 
$oIMDB = new IMDB('http://www.imdb.com/title/tt1022603/');
if ($oIMDB->isReady) {
    echo '<p><a href="' . $oIMDB->getUrl() . '">' . $oIMDB->getTitle() . '</a> got rated ' . $oIMDB->getRating() . '.</p>';
    echo '<p><img src="' . $oIMDB->getPoster() . '" style="float:left;margin:4px 10px 10px 0;"> <b>About the movie:</b> ' . $oIMDB->getPlot() . '</p>';
} else {
    echo '<p>Movie not found!</p>';
}
?>

<hr>

<?php 
$oIMDB = new IMDB('Fabian Beiner never made a movie. Yet!');
if ($oIMDB->isReady) {
    echo '<p><b>' . $oIMDB->getTitle() . '</b></p>';
} else {
    echo '<p>Movie not found!</p>';
}
?>
</body>
</html>