Jump to content

Search bar for my site


pieteral

Recommended Posts

This is the code i use to search the data.$query=mysql_query("select * from inser where name='".$_GET['id']."'"); // Query to fetch data from data base$row=mysql_fetch_array($query); // Query to fetch data from data base//code for search $output="<table border='2' cellpadding='4' align='center'><tr><th>name</th><th>email</th><th>dob</th><th>phone</th><th>city</th></tr>";$output.="<?php while($row = mysql_fetch_array($row)) { ?><tr><td>".$row['name']."</td><td>".$row['email']."</td><td>".$row['dob']."</td><td>".$row['phone']."</td><td>".$row['city']."</td></tr>";$output.="</table>";echo $output;

Edited by worrall
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...