======================================================================================== File Name: index.html ======================================================================================== GIT Live Search

GIT Student Search From File

======================================================================================== File Name: links.xml ======================================================================================== Search Your Details on following links https://www.wishusucess.com/Online/Git List of Experiments are available on this website https://www.wishusucess.com/Online/Git This is My Project Live Search Database https://www.wishusucess.com/Online/Git Ajax Concept https://www.wishusucess.com/Online/Git JavaScript Date Object https://www.wishusucess.com/Online/Git JavaScript Array Object https://www.wishusucess.com/Online/Git ======================================================================================== File Name: livesearch.php ======================================================================================== 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="" . $y->item(0)->childNodes->item(0)->nodeValue . ""; } else { $hint=$hint . "
" . $y->item(0)->childNodes->item(0)->nodeValue . ""; } } } } } // Set output to "no suggestion" if no hint was found // or to the correct values if ($hint=="") { $response="no suggestion"; } else { $response=$hint; } //output the response echo $response; ?>