Skip to content

Instantly share code, notes, and snippets.

@sgammon
Created July 24, 2011 00:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgammon/1102048 to your computer and use it in GitHub Desktop.
Save sgammon/1102048 to your computer and use it in GitHub Desktop.
Hampshire Connect help: search function
<?php
include("mainstyle.php");
include("links.php");
mysql_connect ("localhost", "db","password") or die (mysql_error());
mysql_select_db ("db");
$term = $_POST['term'];
//$sql = mysql_query("SELECT 'firstname','lastname' FROM users WHERE
MATCH('firstname','lastname') AGAINST('%$term%')");
$sql = mysql_query("select * from users where firstname like '%$term%' or
lastname like '%$term%' or phone like '%$term%' or box like '%$term%' or interest1
like '%$term%' or interest2 like '%$term%' or interest3 like '%$term%' or notes
like '%$term%'");
?>
<html>
<head><title>Search Results</title>
<link rel="stylesheet" type="text/css" href="mainstyle.css" />
</head>
<body>
<div class="contain">
<table>
<tr>
<th>First Name</th><th>Last Name</th><th>Phone</th><th>Box</th><th>Academic
Interest</th><th>Academic Interest</th><th>Extracurricular Interest</th><th>Notes</
th>
</tr>
<?php
while ($row = mysql_fetch_array($sql)){
?>
<tr>
<td><?php echo $row['firstname']; ?></td><td><?php echo $row['lastname']; ?></
td><td><?php echo $row['phone'];?></td><td><?php echo $row['box']; ?></td><td><?
php echo $row['interest1']; ?></td><td><?php echo $row['interest2']; ?></td><td><?php
echo $row['interest3']; ?></td><td><?php echo $row['notes']; ?></td>
</tr>
<?php
}
?>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment