[Solved] How to get year of a movie or TV Show from IMDB [closed]

The OMDB ABI might be of help in this instance. All you would need to do is send an HTTP request (including the a movie’s title to the service). Assuming a match, you will get back a JSON-formatted string containing the movie in question’s year. For example: Request: http://www.omdbapi.com/?t=Batman&y=&plot=short&r=json Response: {“Title”:”Batman”,“Year”:”1989″,”Rated”:”PG-13″,”Released”:”23 Jun 1989″,”Runtime”:”126 min”,”Genre”:”Action, Adventure”,”Director”:”Tim … Read more

[Solved] How to use php_CURL to acess a website [closed]

function get_web_page( $url ) { $options = array( CURLOPT_RETURNTRANSFER => true, CURLOPT_HEADER => false, CURLOPT_FOLLOWLOCATION => true, ); $ch = curl_init( $url ); curl_setopt_array( $ch, $options ); $content = curl_exec( $ch ); curl_close( $ch ); return $content; } echo get_web_page(“http://www.emirates.com/account/english/miles-calculator/miles-calculator.aspx?org=BOM&dest=JFK&trvc=0&h=7b1dc440b5eecbda143bd8e7b9ef53a27e364b”); 1 solved How to use php_CURL to acess a website [closed]