Thanks everyone for the advice,
The script needed to create a data passing area between two PHP programs where one must use what was entered from a FORM into the first.
Here below the script
The firsyt PHP Program
// Put the entire POST data as $_SESSION object
$_SESSION [“PostData”] = $_POST
The second PHP Program
//Retrieve the POST data fdom the $_SESSION
$postData=$_SESSION [“PostData”]
Now we can use $postData as an Array but also simulating that the second program was activated via HTTP POST.
This is useful if (and this is the case) you use object-oriented programming that maps HTTP POST. HTTP GET, records extracted from File or MYSQL into as many interacting objects.
I come to PHP from Java and, more precisely, from the J2EE architecture, so I am bound to extremely advanced object-oriented programming. I therefore created a PHP-INJECTOR, a tool that, from a porophile of any type, creates PHP Classes.
I therefore need to approach any WEB element in an “aseptic” programmatical way. .
My next step is to ricreate Java’s Enterprise JavaBeans template in PHP and I’m well underway…