This wont be exactly right, but should put you on track! No more help from me after this, you'll learn the most by finding your own way!
PHP Code:
<?php
$obj = json_decode(file_get_contents($url));
?>
<table>
<tr>
<th>Title</th>
<th>Year</th>
<th>Country</th>
<th>Genres</th>
<th>Rating</th>
<th> </th>
</tr>
<tr>
<td><?php echo htmlentities($obj->title);?></td>
<td><?php echo htmlentities($obj->year);?></td>
<td><?php echo htmlentities($obj->country);?></td>
<td><?php echo htmlentities($obj->genres);?></td>
<td><?php echo htmlentities($obj->rating);?></td>
<td><a href="<?php echo htmlentities($obj->imdburl);?>">More info</a></td>
</tr>
</table>