Current Path : /web/htdocs/www.entinoprofit.org/home/
Upload File :
Current File : /web/htdocs/www.entinoprofit.org/home/aviva.php

<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);



$doc = new DOMDocument;

// We don't want to bother with white spaces
$doc->preserveWhiteSpace = false;

// Most HTML Developers are chimps and produce invalid markup...
$doc->strictErrorChecking = false;
$doc->recover = true;

$doc->loadHTMLFile('http://www.avivaitalia.it/locator/all?circle%5Bvalue%5D=35&circle%5Blocation%5D=Italia&submit.x=0&submit.y=0');

$xpath = new DOMXPath($doc);

$query = "//div[@class='view-content']";

$entries = $xpath->query($query);
var_dump($entries->item(0)->textContent);

?>