Hi,
I little vexing problem : I have a form on a page (page 1) that contains search criteria. I need those search criteria to be used by a script that generates a result list in html (this part works fine, thanks). The problem is I want the result list to appear in a frame ('body') in a new html page (page 2)with another frame ('header') as a header.
If I code this in my form :
<Form action= 'myscript.php' method=POST>
it works fine but I don't get my header frame.
I tried to call the page containing the frameset in the action but then my php script claims the variables are undefined or that the method POST is not allowed (since it's just an html page).
I tried to add a TARGET="body" but to no avail.
I'd greatly appreciate some help 🙂
D.