I am making a web-server in VB6, and I want to add PHP capability to it.
I can't figure out how to send to php.exe the php file, and the incoming
values from the webpage (ex: like username and password for login), and also
I need to get the output in a variable in VB because I don't think it's a
very good idea to keep doing this:
php.exe -q test.php > test.html
and then to read the file in a variable back...
I've tried using pipes, with CreatePipe API it keeps{*filter*} VB, and I have
to end task, and with CreateNamedPipe I just can't make it work at all, I
can't find many examples on how to even use the CreateNamedPipe API.... I
don't even know if that's how I'm supposed to get the data anyways...
Thanks in advance