•
•
•
•
What is DaniWeb IT Discussion Community?
You're currently browsing the PHP section within the Web Development category of DaniWeb, a massive community of 392,080 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 3,998 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our PHP advertiser: Lunarpages PHP Web Hosting
Views: 3927 | Replies: 1
![]() |
•
•
Join Date: Apr 2007
Posts: 4
Reputation:
Rep Power: 0
Solved Threads: 0
Hi,
I'm trying to put together a PHP Ajax search against an mySQL database yet doesnt seem to work .. HELP!
I had to resort to using frameset which I dont really want to do.
what I'm trying to is perform a search against a mysql database and display the results on the same page. Want the ability to perform multiple search without a refresh or change of page.
so far this is what i have
Index.html
Searchuser.js
The code calls a search.php which performs the search against the database and creates the tables.
Search.php echos the tables using DIV .
Any ideas on how to improve this ?
I'm trying to put together a PHP Ajax search against an mySQL database yet doesnt seem to work .. HELP!
I had to resort to using frameset which I dont really want to do.
what I'm trying to is perform a search against a mysql database and display the results on the same page. Want the ability to perform multiple search without a refresh or change of page.
so far this is what i have
Index.html
<html> <head> <script src="selectuser.js"></script> </head> <body> <div align="center" <form name="form" action="search.php" method="get"> <input type="text" name="q" /> <input type="submit" name="Submit" value="Search" /> <div align="right"> <select name="list"> <option value="10"> 10 </option> <option value="20"> 20 </option> <option value="50"> 50 </option> </select> </div> </form> </div> <div id="txtHint"><b>User info will be listed here.</b></div> </body> </html>
Searchuser.js
var xmlHttpfunction showUser(str)
{
xmlHttp=GetXmlHttpObject()
if (xmlHttp==null)
{
alert ("Browser does not support HTTP Request")
return
}
var url="search.php"
url=url+"?q="+str+"?list="
url=url+"&sid="+Math.random()
xmlHttp.onreadystatechange=stateChanged
xmlHttp.open("GET",url,true)
xmlHttp.send(null)
}
function stateChanged()
{
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
document.getElementById("txtHint").innerHTML=xmlHttp.responseText
}
}function GetXmlHttpObject()
{
var xmlHttp=null;
try
{
// Firefox, Opera 8.0+, Safari
xmlHttp=new XMLHttpRequest();
}
catch (e)
{
//Internet Explorer
try
{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
}
catch (e)
{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
}
return xmlHttp;
}The code calls a search.php which performs the search against the database and creates the tables.
Search.php echos the tables using DIV .
Any ideas on how to improve this ?
•
•
•
•
Hi,
I'm trying to put together a PHP Ajax search against an mySQL database yet doesnt seem to work .. HELP!
I had to resort to using frameset which I dont really want to do.
what I'm trying to is perform a search against a mysql database and display the results on the same page. Want the ability to perform multiple search without a refresh or change of page.
so far this is what i have
Index.html
<html> <head> <script src="selectuser.js"></script> </head> <body> <div align="center" <form name="form" action="search.php" method="get"> <input type="text" name="q" /> <input type="submit" name="Submit" value="Search" /> <div align="right"> <select name="list"> <option value="10"> 10 </option> <option value="20"> 20 </option> <option value="50"> 50 </option> </select> </div> </form> </div> <div id="txtHint"><b>User info will be listed here.</b></div> </body> </html>
Searchuser.js
var xmlHttpfunction showUser(str) { xmlHttp=GetXmlHttpObject() if (xmlHttp==null) { alert ("Browser does not support HTTP Request") return } var url="search.php" url=url+"?q="+str+"?list=" url=url+"&sid="+Math.random() xmlHttp.onreadystatechange=stateChanged xmlHttp.open("GET",url,true) xmlHttp.send(null) } function stateChanged() { if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { document.getElementById("txtHint").innerHTML=xmlHttp.responseText } }function GetXmlHttpObject() { var xmlHttp=null; try { // Firefox, Opera 8.0+, Safari xmlHttp=new XMLHttpRequest(); } catch (e) { //Internet Explorer try { xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); } } return xmlHttp; }
The code calls a search.php which performs the search against the database and creates the tables.
Search.php echos the tables using DIV .
Any ideas on how to improve this ?
What error(s) are you getting? Or what isn't happening?
There are a couple of syntax errors in your JS.
Searchuser.js
var xmlHttpfunction showUser(str)
{should be
var xmlHttp
function showUser(str)
{Probably best to end all your JS commands with the semi-colon. This allows more than one on a line without having syntax errors. (Useful if you want to compress your JS also)
The URL you are creating will have two ? in it.
var url="search.php" url=url+"?q="+str+"?list=" url=url+"&sid="+Math.random()
I believe you want:
var url="search.php"; url=url+"?q="+str+"&list="; url=url+"&sid="+Math.random();
or simpler:
var url="search.php"; url += "?q="+str+"&list="; url += "&sid="+Math.random();
Last edited by digital-ether : Apr 11th, 2007 at 3:05 pm.
www.fijiwebdesign.com - web design and development and fun
Cpanel Email - Let users Register email accounts on your website upon registration
Ajax Chat - Fully browser based chat!
Cpanel Email - Let users Register email accounts on your website upon registration
Ajax Chat - Fully browser based chat!
![]() |
•
•
•
•
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
•
•
•
•
•
•
•
•
DaniWeb PHP Marketplace
•
•
•
•
adsense adult advertising ajax asp blog blogging book business coding competition copyright daniweb developer development earth engine forum google internet legal malware marketing mcafee microsoft monetization msdn news office phishing php privacy publishing revenue search security software space spyware sql support system technical universe vista web webmaster wiki wikipedia yahoo
- php drop down menu to search multiple sql tables (PHP)
- need help setting up a php/mysql search (PHP)
- it's simple but yet complicated...php and mysql search.. (PHP)
- Using Search Engine Friendly PHP URLs (PHP)
Other Threads in the PHP Forum
- Previous Thread: Age Verification Script
- Next Thread: Send form inputs to email address


Linear Mode