i have a index page that works with a topFrame and a mainFrame.
in the topFrame i have a little form with a text field and a button to perform a search in a MySQL db, it's kinda like this:
<form action="search.php" method="post" name="search" target="mainFrame" onsubmit="search.php">
<input type="text" name="name" value="Search" size="15"></input>
<input type="submit" onclick="search.php" value="Search" name="Search" target="mainFrame"></input>
it calls the search.php script to process and display the results in the mainFrame.
the problem is that you have to type in the search term exactly, otherwise it won't show any results.
can anyone help me with this? i can attach the files if you want.