Search found 4 matches

by Danielh
Sat Jul 19, 2003 11:10 pm
Forum: PHP - Code
Topic: Implementing PHP: server to PHP interface?
Replies: 9
Views: 1158

My guess is that it is a "CGI" version, which I take to mean that it reads variables in the same way that a CGI script (say, one written in PERL) would read them. Since my server DOES currently support CGI, it's only a matter of tedium to tweak my server to use PHP as if it were a standard...
by Danielh
Sat Jul 19, 2003 9:05 pm
Forum: PHP - Code
Topic: Implementing PHP: server to PHP interface?
Replies: 9
Views: 1158

Thanks, Cruzado, for the long reply, but Nielsene has it right :> - - I can invoke PHP (in a seperate process), but I need to know just how to pass (to this process) the variables, etc that PHP uses . As for checking the source..... ugh, t was hoping to avoid that (esp. since I don't write in C). I'...
by Danielh
Sat Jul 19, 2003 12:58 pm
Forum: PHP - Code
Topic: Implementing PHP: server to PHP interface?
Replies: 9
Views: 1158

Um, the manual is huge, so even after an hour or so, I could not find any documentation explaining the interface between a "server" and "PHP". And , um... but... I figured out how to do $_SERVER ..., but have NO idea how to do $_POST, etc. So, if anyone could point me to the SPEC...
by Danielh
Sat Jul 19, 2003 8:03 am
Forum: PHP - Code
Topic: Implementing PHP: server to PHP interface?
Replies: 9
Views: 1158

Implementing PHP: server to PHP interface?

I'm the author of sre2003-srehttp/2, a freeware web server for OS/2. A user of this product has asked me about supporting PHP. I've located a standalone version of PHP for OS/2. [Did I mention that I've never used PHP before??] My simple experiments worked (i.e.; hello world). My question is how to ...