Hi all, im not having any luck figuring it out.,
- Using a form, a user enters a search word (his email address):
<form method="POST" action="results.php">
Email: <input type="text" name="search">
<input type="SUBMIT" value="Submit">
</form>
the search word is looked for in the database
then the entire row is displayed wherever the search word is found.
ie. ive a table consisting of :
ID
name
email
location
filename
I am hoping to create a form, where the user enters his email, the search looks in the email field, then displays the contents of the entire row where the email address is found. (ID, name, location, email, filename)
could somone put a bit of example code?
thanks so much.