Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a script that uses a splash of everything in the title.

Where i'm stuck is i'd like to be able to add a button after the first MYSQL_Query has run that allows the user to display further info about the price range that is initially displayed as per there input via an AJAX drop down list.

The code is like so:

    //*********************************************************************************        ******
    // ************This code displays the users search results as an HTML         table**************
    //***************************************************************************************

    $con = mysql_connect("localhost","root","");
    if (!$con)
 {
die('Could not connect: ' . mysql_error());
}

mysql_select_db("DB", $con);

$result = mysql_query("SELECT sname, MIN(scategorycost) AS minprice, MAX(scategorycost) AS maxprice FROM services WHERE sname='$drop' AND scategory='$drop_2' AND ssubcategory='$drop_3' AND ssubcategorytype='$drop_4' AND sregion='$drop_5' AND scity='$drop_6' AND ssuburb='$drop_7' GROUP BY sname");

echo "<table border='2'>
<tr>
<th>Aprox Lowest Price</th>
<th>Aprox Highest Price</th>
</tr>";

while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>$" . $row['minprice'] . "</td>";
echo "<td>$" . $row['maxprice'] . "</td>";
echo "</tr>";
}
echo "</table>";

?>

//***** Button would go here to execute the next part of the script if user were to push the button

<?php 

{ 
$result1 = mysql_query("SELECT * FROM services where sname='$drop'AND scategory='$drop_2' AND ssubcategory='$drop_3' AND ssubcategorytype='$drop_4' AND sregion='$drop_5' AND scity='$drop_6' AND ssuburb='$drop_7'")or die(mysql_error()); 

if($result1) { 
echo "<table border='2'>
<tr>
<th>Provider Name</th>
<th>Provider Address</th>
<th>Provider Website</th>
<th>Provider Email</th>
<th>Service Sub Type</th>
<th>Aprox Cost</th>
</tr>";

while($row = mysql_fetch_array($result1))
{
echo "<tr>";
echo "<td>" . $row['sprovidername'] . "</td>";
echo "<td>" . $row['sprovideraddress'] . "</td>";
echo "<td><a href='{$row['sproviderurl']}'>{$row['sproviderurl']}</a></td>\n";
echo "<td><a href='mailto:{$row['semail']}'>{$row['semail']}</a></td>\n";
echo "<td>" . $row['ssubcategorytype1'] . "</td>";
echo "<td>$" . $row['scategorycost'] . "</td>";
echo "</tr>";
}
echo "</table>"; 
}

mysql_close($con);

}
}
?>

So as you can see from the above code i have also pasted in the other query that i would like processed via a button. the above code just displays both lots of info at this stage.

Any help would be great.

Cheers

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.