
December 15th, 1999, 07:31 AM
|
|
Guest
|
|
Posts: n/a
Time spent in forums:
Reputation Power:
|
|
|
PHP script is parsed on the server side, so if you want PHP scripts to be executed a request to the server has to be made (i.e. (re)loading of a page).
Why not just execute the script on a reload of the original page. Put the script in the page and send the flashform outcome by a url-variable (page.php3?name="value") to trigger the script on reloading: if(isset($name)) { [execute script lines] }
After that the page just returns as it was, or you can modify it according to the outcome of the executed script. Just as you wish.
Greets, Peter
|