Hello,
i am writing a php script "a", that should call another php script "b" on the server.
the script "b" should receive different values in variables from script "a".
Because script "b" is not called via browser (it is called via unix shell) i cannot simply add a query string.
so, what do i have to write in script "a", to call a script "b", and what do i have to write in script "b", to read out the variables passed by script "a".
Tim