im very new to php. can anyone please help. im trying to create a search feature for my application which im using php and mysql. can you please give me the code for a simple search feature.
thank you
|
Skilled contributor
|
![]() |
| 15Apr2011,20:37 | #2 |
|
can you descripbe the search features
if you clearly know the app, you can base your search on the DB itself, and dynamically generate the required links ex: you search for "best article" you have a page named best artcle in your DB you make link with the article ID hope you got it
|
|
Go4Expert Member
|
|
| 5May2011,12:56 | #3 |
|
You need first to create a HTML form for the search
HTML Code:
<form action="search.php"> <input type="text" name="s" /> <input type="submit" value="Search" /> </form> PHP Code:
|

