Hello ,
I am a new user of this site and also new to web development.Recently while developing my site on tourism by php/mysql i thought of placing a search bar at the top of my website where users can search topics and results would be provided according to the keywords entered by them.
Is there any way to search all the tables of my database and provide the results to users.
Any idea regarding this would be of great help.
I have created a search bar as under
<div id="search" >
<form method="get" action="">
<div>
<input type="text" name="search" id="search-text" value="" />
<input type="submit" id="search-submit" value="GO" />
</div>
</form>
</div>