Re: [PHP] cgi vs php

2009-02-06 Thread Thodoris
wrote: [snip] can anybody tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language First of all try not to top post this is what we usually do here. Well CGI is a standard protocol implemented

RE: [PHP] cgi vs php

2009-02-05 Thread Jay Blanchard
[snip] can anybody tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] cgi vs php

2009-02-05 Thread Vikas Sharma
tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language -- vikas sharma

[PHP] cgi vs php

2009-02-05 Thread Vikas Sharma
can anybody tell me the benefits of php over cgi or vice versa? i need to compare both? -- vikas sharma

Re: [PHP] cgi vs php

2009-02-05 Thread Thodoris
anybody tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language First of all try not to top post this is what we usually do here. Well CGI is a standard protocol implemented by many programming

Re: [PHP] cgi vs php

2009-02-05 Thread Martin ZvarĂ­k
wrote: [snip] can anybody tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language First of all try not to top post this is what we usually do here. Well CGI is a standard protocol implemented

Re: [PHP] cgi vs php

2009-02-05 Thread Vikas Sharma
, Feb 5, 2009 at 6:45 PM, Jay Blanchard jblanch...@pocket.com wrote: [snip] can anybody tell me the benefits of php over cgi or vice versa? i need to compare both? [/snip] CGI is a gateway to be used by languages PHP is a language First of all try not to top post this is what we

[PHP] cgi 2 php

2001-08-18 Thread Steven Dowd
Has anyone ever come across a cgi 2 php program at all, similar to the asp2php program ? or has anyone got a quick and easy tutorial for me to read through on what needs converting to what , language 2 language . Steven -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail

Re: [PHP] CGI BIN PHP

2001-02-22 Thread bill
Cool, Hrishi. Can you make it work if you use a different url? For example, for SSL connections like: https://www.secure-website.net/~mydomain I'm thinking of using something like this: $spos=strpos($SCRIPT_FILENAME, "/public_html"); // or whatever the name of the public root dir $firstpath

Re: [PHP] CGI BIN PHP

2001-02-21 Thread Hrishi
hey, don't go bald yet :) my web host (communitech.net) has the same setup... is that where you're hosted ? i have a script called 'php4.cgi' in my /cgi-bin which contains: #!/bin/sh #echo -e "Content-type: text/plain\n\n"; #set

Re: [PHP] CGI BIN PHP

2001-02-21 Thread Chad Guilette
Compensate For A Lack Of Skill By Doubling Your Efforts, There's No End To What You Can't Do. - Original Message - From: "Hrishi" [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Wednesday, February 21, 2001 4:01 AM Subject: Re: [PHP] CGI BIN PHP hey, don't go bald

[PHP] CGI BIN PHP

2001-02-20 Thread cguilette
I'm sorry for asking this question but I've pulled my hair out looking for an answer and I can't seem to find oneHere's my situation...my host has php 3.0.9 installed as an apache module and php4.0.3.pl1 setup as a cgi binobviously i want to use 4 because I need to do a lot of work

[PHP] CGI vs PHP

2001-02-03 Thread phpLover
Can anyone tell how good is PHP when compared to CGI in handling flat file database. Can we handle flat files on PHP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] CGI vs PHP

2001-02-03 Thread Alain Fontaine
essage news: 95hl5r$1su$[EMAIL PROTECTED] Can anyone tell how good is PHP when compared to CGI in handling flat file database. Can we handle flat files on PHP? Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail:

Re: [PHP] CGI vs PHP

2001-02-03 Thread phpLover
nt: Sunday, February 04, 2001 12:34 AM Subject: Re: [PHP] CGI vs PHP Do you know what PHP is? Your question sounds like "How does MS SQL Server compare to a relational database". Anyway, you can do almost everything with PHP, and that includes handling flat files. No problem.

Re: [PHP] CGI vs PHP

2001-02-03 Thread Steve Werby
languages that can run as a CGI. PHP installed as an Apache module will in general run scripts faster than a Perl CGI or PHP CGI. PHP works great for file handling scripts, though as your files grow you'll probably want to consider using databases instead of flat files. -- Steve Werby COO 24-

[PHP] CGI and PHP

2001-01-25 Thread Dave Stewart
Hi, I have this line in my shtml pages... !--#exec cgi=\"../../cgi-bin/ads.cgi" -- How do I write this as a function to include in my .php files. (I've looked up virtual () in the manual but can't make head nor tail of it). Many thanks, Dave Stewart -- PHP General Mailing List

Re: [PHP] CGI and PHP

2001-01-25 Thread John Meredith
One of exec, system or backtick (ie. `) functions will do it for you. - John On Fri, Jan 26, 2001 at 12:14:47PM +1300, Dave Stewart wrote: Hi, I have this line in my shtml pages... !--#exec cgi=\"../../cgi-bin/ads.cgi" -- How do I write this as a function to include in my .php