oubipaws Posted February 26, 2007 Share Posted February 26, 2007 Hey Guys- I was reading this website on how to setup a Live Search feature with PHP/JS/XML (ajax): http://www.w3schools.com/php/php_ajax_livesearch.asp Parse error: parse error, unexpected T_OBJECT_OPERATOR in d:\domains\[domain removed]\wwwroot\global\livesearch.php on line 16 I used the exact code from their site as my livesearch.php file: <?php $xmlDoc = new DOMDocument(); $xmlDoc->load("links.xml"); $x=$xmlDoc->getElementsByTagName('link'); //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('title'); $z=$x->item($i)->getElementsByTagName('url'); 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; ?> Line 16 specifically is as follows: $y=$x->item($i)->getElementsByTagName('title'); I am missing something stupid and I know that, but I am having one of those days - anyone got any ideas? Thanks! Link to comment https://forums.phpfreaks.com/topic/40210-phpajax-error-live-search/ Share on other sites More sharing options...
itsmeArry Posted February 27, 2007 Share Posted February 27, 2007 I used the same code and after some alterations it worked fine for me. if you want I can send you the code for that on your mail id.. Link to comment https://forums.phpfreaks.com/topic/40210-phpajax-error-live-search/#findComment-195192 Share on other sites More sharing options...
oubipaws Posted February 27, 2007 Author Share Posted February 27, 2007 I'd really appreciate it my email is [email protected] Your awesome, thank you very much! Link to comment https://forums.phpfreaks.com/topic/40210-phpajax-error-live-search/#findComment-195212 Share on other sites More sharing options...
itsmeArry Posted February 27, 2007 Share Posted February 27, 2007 I just mailed you the files plz check them... Link to comment https://forums.phpfreaks.com/topic/40210-phpajax-error-live-search/#findComment-195264 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.