Re: [PHP] Lynx/Apache PHP execution vs. PHP interpreter

2002-11-08 Thread Chris Wesley
On Fri, 8 Nov 2002, Jason Young wrote: > I've edited the reporting functions so that instead of throwing it up on > the console like it normally does, it instead calls lynx with the -dump > parameter to the PHP page, and that in turn puts the variables into a > DB... (Basically I can access my ful

RE: [PHP] Lynx/Apache PHP execution vs. PHP interpreter

2002-11-08 Thread John W. Holmes
I imagine it would be faster if you didn't involve lynx. You can just call up php.exe and a script and send the data as arguments. Your script will receive the arguments and insert them into the database. This way you're not involving lynx or HTTP requests, etc, and it should be faster. ---John H