I am trying to get a search form(.html) to send its MySQL query results(.php) to a frame in a frame page.
If I use
Code: Select all
<form method="post" action="resultsframe.htm">The requested method POST is not allowed for the URL /resultsframe.htm. error.
The code below just replaces the search page with the query results in the same original window.
Can I tweek it to make it display the query results in a frame page?
Code: Select all
<form method="post" action="query.php" target="resultsframe.htm" onSubmit="resultsframe.htm">Thanks for any advice. Virgil