Hi all I am new to using jQuery and I want to use the AJAX function for the search function my website. However I am having a bit of difficulty learning this as I can only find examples of using non function related PHP. I am currently trying to learn from this youtube example jQuery Youtube Example . However this seems difficult to implement.
A little bit about what I am trying to achieve. I want to type in the postcode into my search bar and have it retrive all the relevant data fields that match using AJAX so that it is displayed in the div directly below the search bar.
As I'm not very familiar with jQuery I'm not sure if I am going about this the right way, any input will be warmly welcomed. Thank you in advance!
My code is as so
index.php
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/ajax.js"></script>
<?php include("header.php");
$houseobject = new House();
$houseobject->search($_POST['term']);?>
<div id="mainContent">
<div id="searchformWrap">
<br/><h2>Search for Accomodation</h2>
<div id="searchform"><br/><br/><br/>
<form method="post" action="index.php" name="search" id="search_form">
<div class="searchrow">
<div class="searchlabel">Location</div>
<div class="searchinput">
<input type="text" name="term" id="term" />
<input type="submit" name="submit" id="searchsubmit" value="Search"/>
</form>
<div class="help">e.g. 'PO5' or 'Portsmouth'</div>
</div> <!-- end input -->
</div> <!-- end .row -->
<div id="searchquery"> </div>
</div> <!-- End maincontent -->
classes/class.House.inc
<?php
include ("connect.class.Database.inc");
class House extends Database {
public function search ($term){
$query = "SELECT * FROM houses
WHERE postcode like '%".$this->mysqli->real_escape_string($term)."%'";
$result = $this->mysqli->query($query);
$num_result = $result->num_rows;
if($num_result > 0){
while($rows =$result->fetch_assoc()) {
$this->data[]=$rows;
//print_r($rows);
}
return $this->data;
} else{
echo 'No Records Found';
}
echo json_encode($data);
}
}
js/ajax.js
$('input#searchsubmit').on('click', function() {
if ($.trim(term) != '') {
$.post('classes/class.House.inc', {term: term}, function(data) {
$('div#searchquery').text(data);
});
}
});
}
I have usually been grabbing results by pointing the form on index.php to...
search.php
<table width="500" border="1" cellpadding="5">
<tr>
<th width="16" scope="row">id</th>
<td width="95">bedrooms</td>
<td width="140">description</td>
<td width="104">roadname</td>
<td width="71">postcode</td>
</tr>
<?php
require("classes/class.House.inc");
$obj = new House();
if ($data = $obj->search($_POST['term']))
{
foreach($obj->data as $val){
extract($val);
}
}
?>
<tr>
<td scope="row"><?php echo $id; ?></td>
<td><?php echo $bedrooms; ?></td>
<td><?php echo $description; ?></td>
<td><?php echo $roadname; ?></td>
<td><?php echo $postcode; ?></td>
</tr>
</table>

class.House.inc? :-) – Ben Carey Nov 8 '12 at 12:05