-
Parsing PHP in VB?
Greetings,
I have a very standard http web server written in VB.Net. I am able to access html files with no problem, but I would like to give it the ability to parse PHP scripts as well. I cannot find any information on this. Is it possible? If so any leads would be very helpful.
Thank you
-
Re: Parsing PHP in VB?
Generally, you can just pass the php file as an argument to php.exe and it will parse it and return the output which you send as HTML.
That's the only thing I've ever done with it. There are better ways but I'm not sure.
-
Re: Parsing PHP in VB?
That worked, and it will suffice for what I need.
Thank you =)