OK, obviously my first explanation of this was not clear...i wasn't exactly sure what to say. To simplify, what do I need to do to use the form below to sucsessfully search in the mysql database I have? I want to have the user select from the three options in the dropdown menu and then type in the text to search and get the results that match from that catagory displayed.
html file:
<html>
<body>
<h2>Database Search</h2>
<form action="retrieve_data.php" method="POST">
<input type='hidden' name='submitted'>
Search for your information:
<select name="field" id="field">
<option value="id">id</option>
<option value="name">name</option>
<option value="username">username</option>
</select>
Search item:<input type="text" name='cond' size='20'><br><br>
<input type="submit">
</form>
</body>
</html>
php code i currently have that searches using checkboxes, which i don't want:
<?php
extract($_REQUEST);
$fields = 0;
$query = "select ";
$th = "";
for( $i = 0; $i < count($chk); $i++ ) {
if( $chk[$i] ) {
$query .= $chk[$i].',';
$th .= "<th>".$chk[$i]."</th>";
$fields++;
}
}
$query = rtrim($query,',');
$query .= "user";
if(!empty($cond)) {
$query .= " where ".$cond;
}
$query .= " name ".$sorted;
$query .= " ".$name;
@ $db = new mysqli('localhost','root','','userData');
if (mysqli_connect_errno()) {
echo "Can't connect to Server. Errorcode: ", mysqli_connect_error();
exit;
}
else {
echo "Connected successfully<br />";
}
$result = $db->query(stripslashes($query));
$numrecs = $result->num_rows;
echo "Your results: <br />";
echo "<b>".$query."</b><br />";
echo "<table border='2'>";
echo $th;
for ($i = 0; $i < $numrecs; $i++ ) {
$row = $result->fetch_array();
echo "<tr>";
for($f = 0; $f < $fields; $f++ ) {
echo '<td>'.$row[$f].'</td>';
}
echo '</tr>';
}
echo "</table>";
?>