<?php
/**
*
* @version $Id: prev.php 322 2009-09-14 20:19:48Z subjective $
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
* @copyright Copyright (c) 2009 Bastian Feder, Thomas Weinert
*/
header('Content-type: text/plain');
$xml = <<<XML
<html>
<head></head>
<body>
<div><span>has child</span></div>
<div id="start"></div>
<div></div>
<div><span>has child</span></div>
<div class="here"><span>has child</span></div>
<div><span>has child</span></div>
<div class="here"></div>
<div></div>
<p><button>Go to Prev</button></p>
</body>
</html>
XML;
require_once('../FluentDOM.php');
->find('//div[@id = "start"]')
echo "\n\n";
->find('//div[@class= "here"]')
?>