Is it possible to get a single search bar to execute multiple values at once? For instance, let's say I have set my value="search" upon a user hitting submit, but instead of just fulfilling that one action, I would like it to fulfill multiple ones.
Take for example the code below:
<div id="search">
<form action="" method="get">
<label>
Search
<input type="text" name="q" id="searchbox" />
<input type="submit" name="submit" id="submit" value="Search Library" />
</label>
</form>
</div>
As you can see the value is set to execute solely what I have listed. If I wanted multiple searches to be executed would I be able to do something like the following: value="Search Library", "Search Store", "Search Stock" so that I could execute multiple searches at once, or is there another way to get this done.
By the way, I'm a bit of a novice, so step-by-step help would be appreciated.
Thanks for the help,
DCTechSU