I'm new to PHP so this is probably simple.
I have some PHP script that draws a form, called "MyForm.php" for arguments sake. The action of the <form> of this script calls "Submit.php" to update data in the database.
What I want to do is 2 things:
1) Once the data has been updated redraw the form.
2) If user chooses to navigate to another record
Is there a PHP piece of code I can use to call "MyForm.php" again from another script?
I was thinking I'd have to turn "MyForm.php" into an include file for "Submit.php" and draw the form within a function. But then my question becomes how do I activate it the first time?