I'm using a pop-up form to select a piece of information to be passed to my PHP script so I'm using <FORM METHOD=POST action="my.php3">. All I really want to happen is for the script to execute (it creates datafiles for the graphics routines and calls the graphics routines) and then refresh the graph on my current page. The problem is that my current page is a set of frames and for some reason only one frame is refreshed??(the frame the form is in) The other frame contains the graph I need refreshed. I'm using this to in my PHP script to get the page to return. echo '<meta http-equiv="Refresh" Content="0; url=mycurrent.html">';
Am I doing this right or is there a better way?
You want that the answer from you PHP script goes to another frame? Simple: <form ... target="nameFromFrame">
or if you want to refresh all the screen: <form ... target="_top">
[]s Daniel van Ham Colchete