The main program is a PHP, not an html program. The calls are just as you showed:
require_once "frm_a.php";
require_once "frm_b.php";
require_once "frm_c.php";
......
What I want is when frm_a.php runs, I want the statement in frm_a.php to show on the screen as: "frm_a being tested.."
before frm_b is run.
But what happens is that all the frm's run when using require_once BEFORE and statement is shown on the screen. The screen remains blank until all the require_once call are completed and then the screen statements all show up at the same time.
I wanted another way to call the frm's so that frm_b will not be called until frm_a is complete.
Is there a way to do this?
TIA
DickDeeds