php multiple action on submit

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

dkhanna01
Forum Newbie
Posts: 7
Joined: Tue Oct 13, 2009 4:05 pm

Re: php multiple action on submit

Post by dkhanna01 »

yup javascript location.reload() reload function does reload the form but I would like to reload the form AFTER I execute process.php so order of execution is process.php -> reload form
Reviresco
Forum Contributor
Posts: 172
Joined: Tue Feb 19, 2008 4:18 pm
Location: Milwaukee

Re: php multiple action on submit

Post by Reviresco »

In the body tag of the new window:

Code: Select all

<body onload="opener.location.reload();">
Post Reply