ajax livesuche - Forum: phpforum.de
... 0px; padding: 0px; } .suggestionList li { margin: 0px 0px 3px 0px; padding: 3px; cursor: pointer; } .suggestionList li:hover { background-color: #659CD8; } /style /head body div form div Type your county: br / input type="text" size="30" value="" id="inputString" onkeyup="lookup(this.value);" onblur="fill();" / /div div ...
gesucht auf phpforum.de
PHP updaten? [Archiv] - PHP script resource
... old php.ini might be useful in setting up the new PHP as well. And as you'll soon learn the preferred method for installing PHP is to keep all PHP related files in one directory and have this directory available to your systems PATH. FloB 02-04-2005 10:48 Bin ich blind? Ja das bin ich ... :( Danke! Alle Zeitangaben in WEZ +2. Es ist jetzt 16:41 ...
gesucht auf php-resource.de
Problem mit Auto suggest [Archiv] - PHP script resource
... new ActiveXObject("Microsoft.XMLHTTP"); } else { alert("Your Browser Sucks!\nIt's about time to upgrade don't you think?"); } } //Our XmlHttpRequest object to get the auto suggest var searchReq = getXmlHttpRequestObject(); //Called from keyup on the search textbox. //Starts the AJAX request. function searchSuggest() { // Eingabe testen ob es Text ist var ...
gesucht auf php-resource.de
AJAX Autocompleter für mehrere Textboxen [Archiv] - PHP script resource
... real_escape_string($_POST['queryString']); if(strlen($queryString) 0) { $query = $db query("SELECT * FROM meldungen1 WHERE name1 LIKE '$queryString%' LIMIT 10"); if($query) { while ($result = $query fetch_object()) { echo ' li onClick=" fill(\''.$result name1.'\'); fill_2(\''.$result vorname1.'\'); " '.$result name1.' '.$result vorname1.' /li '; } } else { ...