Trying to build a live search with my xml file.Getting this error:\[code\] Warning: DOMDocument::load() [domdocument.load]: xmlParsePI : no target name in /home/wwwfligh/public_html/sql2xml5.php, line: 1 in /home/wwwfligh/public_html/livesearch.php on line 3 Warning: DOMDocument::load() [domdocument.load]: Start tag expected, '<' not found in /home/wwwfligh/public_html/sql2xml5.php, line: 2 in /home/wwwfligh/public_html/livesearch.php on line 3 no suggestion\[/code\]Here is my live search code:\[code\] <?php $xmlDoc=new DOMDocument(); $xmlDoc->load("sql2xml5.php"); $x=$xmlDoc->getElementsByTagName('airport'); //get the q parameter from URL $q=$_GET["q"]; //lookup all links from the xml file if length of q>0 if (strlen($q)>0) { $hint=""; for($i=0; $i<($x->length); $i++) { $y=$x->item($i)->getElementsByTagName('ident'); $z=$x->item($i)->getElementsByTagName('name'); if ($y->item(0)->nodeType==1) { //find a link matching the search text if (stristr($y->item(0)->childNodes->item(0)->nodeValue,$q)) { if ($hint=="") { $hint="<a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } else { $hint=$hint . "<br /><a href='" . $z->item(0)->childNodes->item(0)->nodeValue . "' target='_blank'>" . $y->item(0)->childNodes->item(0)->nodeValue . "</a>"; } } } } } // Set output to "no suggestion" if no hint were found // or to the correct values if ($hint=="") { $response="no suggestion"; } else { $response=$hint; } //output the response echo $response; ?>\[/code\]Here is a link to my xml file that I am trying to read:http://www.fpmnky.com/sql2xml5.phpI have tested the live search with this xml file; which was successful:http://www.fpmnky.com/links2.xmlWhat am I missing here?