Re: [PHP-WIN] The Test.php program does not execute

2005-01-15 Thread egeorge
I do not have Apache installed; therefore I did not see any HTTPD.CONF file to look at. I am using it as a straight CGI midule. I proceeded to set up the web server by first installing the PWS from the Win98SE CD. Next, I installed the Win PHP manually. I believe my problem was configuring the

RE: [PHP-WIN] Call ActiveX component

2005-01-15 Thread Shrock, Court
The comma before the second trim is misplacedby chance, do you mean this instead: $ReturnBalance=$DelphiASPObj->GetClientBalance(trim($Outlet_session)."E", trim($Application["FinURL"])); -Original Message- From: Louis Young [mailto:[EMAIL PROTECTED] Sent: Friday, January 14, 2005 6:1

AW: [PHP-WIN] Insert range in Excel

2005-01-15 Thread Sven Schnitzke
Hi Louis, sorry, no way (at least, directly). This is because PHP COM does not support "multi dimensional variant arrays". These are req'd for passing range value lists. (Maybe you want to drop a request to the devlist?) But as transfer one by one is hilariously slow, you could go one of four wa

Re: [PHP-WIN] The Test.php program does not execute

2005-01-15 Thread GKE
Jason, I am using the CGI version of PHP. I use the executable other than the CLI. Running the PHP from the command line does not yield any result. However, I managed to get the CGI version working in a way (php.ini configuration mix-up) but the problem now is it cannot parse a variable input fro

Re: [PHP-WIN] The Test.php program does not execute

2005-01-15 Thread egeorge
Jason, I am using the CGI version of PHP. I use the executable other than the CLI. Running the PHP from the command line does not yield any result. However, I managed to get the CGI version working in a way (php.ini configuration mix-up) but the problem now is it cannot parse a variable input

[PHP-WIN] RE: [PHP] php editor

2005-01-15 Thread Zu3Bi
Try Dreamweaver, 2 words, Rapid Development.. :) Zu3Bi -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] PHP / HTML Editor

2005-01-15 Thread Hassan Shaikh
Try Context! http://www.context.cx/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

AW: [PHP-WIN] Re: [PHP] php editor

2005-01-15 Thread Sven Schnitzke
My favourite is Scite; it's Open Source, available for Linux, Unix and Win and knows a lot of syntaxes. http://www.scintilla.org The PHP functions and parmlist-aware (call-tips, F1 to PHP docs) derivative named PHPSciTE seems to be withdrawn - maybe copyright issues using the PHP name ? I don'

Re: [PHP-WIN] The Test.php program does not execute

2005-01-15 Thread GKE
I do not have Apache installed; therefore I did not see any HTTPD.CONF file to look at. I am using it as a straight CGI midule. I proceeded to set up the web server by first installing the PWS from the Win98SE CD. Next, I installed the Win PHP manually. I believe my problem was configuring the ph

[PHP-WIN] Re: HTML in PHP to a File

2005-01-15 Thread MikeA
Thanks. I will try the eval. Appreciate the help.! Mike "Jason Barnett" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] *Warning* I don't really suggest that you use eval() unless absolutely necessary. But in this case it does what I *think* you want it to do. http://www.php.net/m

Re: [PHP-WIN] including an HTML file

2005-01-15 Thread Randy Clamons
Gaetano, Try using fread() instead of fgets(). You can read the entire file contents into a single variable. You could then use a regular expression to extract the content. Something like this: // get contents of a file into a string $filename = "/usr/local/something.txt"; $handle = fopen($file