i need to call a php program from another php program in middle and need to execute that php program
like calling PHPA from PHPB program.
after PHPA program execution completed and then PHPB program should resume its execution and need to complete its running

Recommended Answers

All 2 Replies

You can use functions to solve your purpose

function progA 
{
.
.
.

}

function progB 
{
.
.
   progA();
. 
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.