[COLOR=#FFFFCC]PHP Fatal error: Uncaught exception 'InvalidArgumentException' with message 'The current node list is empty.'[/COLOR]
<?php
require 'vendor/autoload.php';
use Goutte\Client;
$client = new Client;
$client->setHeader('User-Agent', 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/48.0.2564.97 Chrome/48.0.2564.97 Safari/537.36');
$crawler = $client->request('GET', 'wwwDOTpornhubDOTcom/view_video.php?viewkey=973043790');
$title = $crawler->filter('.video-wrapper .title-container .title')->first()->text();
echo $title . PHP_EOL;
# I need to close this right?
?>