i was strucked here please help me
I've been looking all over the net and I can't seem to find a clear, obvious answer to my problem.
am currently working with portal website(PHP) for that i need example code for quick job search and some instructions also like what are the steps i have to follow actually i tried with some code but am not getting result please let me know the code for quickjob search. i am new to PHP so please help me.......
i was strucked here please help me
I've been looking all over the net and I can't seem to find a clear, obvious answer to my problem.
am currently working with portal website(PHP) for that i need example code for quick job search and some instructions also like what are the steps i have to follow actually i tried with some code but am not getting result please let me know the mistake i did. i am new to PHP so please help me.......
here is my code details
index.html
<h2>Ajax Search Engine</h2>
<form id="searchForm" name="searchForm" method="post" action="javascript:insertTask();">
<div class="searchInput">
<input name="searchq" type="text" id="searchq" size="30" onkeyup="javascript:searchNameq()"/>
<input type="button" name="submitSearch" id="submitSearch" value="Search" onclick="javascript:searchNameq()"/>
</div>
</form>
<h3>Search Results</h3>
<div id="msg">Type something into the input field</div>
<div id="search-result"></div>
2nd step:ajax_framework.js
function createObject() {
var request_type;
var browser = navigator.appName;
if(browser == "Microsoft Internet Explorer"){
request_type = new ActiveXObject("Microsoft.XMLHTTP");
} else {
request_type = new XMLHttpRequest();
}
return request_type;
}
var http = createObject();
/* -------------------------- */
/* SEARCH */
/* -------------------------- */
function searchNameq() {
var searchq = encodeURI(document.getElementById('searchq').value);
document.getElementById('msg').style.display = "block";
/*document.getElementById('msg').innerHTML = "Searching for <strong>" + searchq+"";
Set te random number to add to URL request*/
nocache = Math.random();
http.open('get', 'search.php?name='+searchq+'&nocache = '+nocache);
/*http.onreadystatechange = searchNameqReply;
http.send(null);*/
}
function searchNameqReply() {
if(http.readyState == 4){
var response = http.responseText;
document.getElementById('search-result').innerHTML = response;
}
}
3rd step:search.php
<?php
$conn=mysql_connect("localhost","root","");
$search = $_GET['searchq'];
mysql_select_db("goget");
$sql = "SELECT * FROM register WHERE name LIKE '%$search%'";
$getName = mysql_query($sql);
if(!$getName)
$total = mysql_num_rows($getName);
while ($row = mysql_fetch_array($getName)) {
echo $row['name']."<br/>";
}
?>