[PHP-WIN] Read System Files /proc/...

2001-03-05 Thread Sauter Marc
I wanna check my system with php. So I wanna read the /proc/.xyz files on my linux server. But the system says access denied. ! WHY ? cu sam -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To con

[PHP-WIN] javascript escape()/unescape() equiv

2001-03-05 Thread Mike Scalora
I am generating some javascript code in PHP and I need to do a javascript escape() in my PHP code so that the javascript can unescape() it on the client. I've looked though the online manual for PHP an can't find anything that helps so far. I think my only problem is line ends so maybe I only n

Re: [PHP-WIN] Help with ODBC to Access query

2001-03-05 Thread Bob Hall
>Hello, > >I'm trying to get the following query to work: > > $query1 = 'SELECT COUNT(RunNumber) AS RunCount, > DatePart("m", CallDate) AS MonNum > FROM CallData > WHERE (CallDate Between #1/1/00# AND #12/31/00#) > AND Dri

Re: [PHP-WIN] How to delete files?

2001-03-05 Thread Gonzalo Vera
Change PHP version. AFAIK, version 4.0.1 had that clear bug (check out the commented manual at php.net, it's probably still there). Install the latest version (4.0.4pl1). The function name is unlink(), not delete(). Gonzalo. > Hi! > I'm a newbie in PHP and want to ask: how to delete files in

[PHP-WIN] How to delete files?

2001-03-05 Thread alexlist
Hi! I'm a newbie in PHP and want to ask: how to delete files in PHP? I tried to use unlink() function: unlink ("mypic.jpg"); and got "Warning: unlink() is not supported in this PHP build" Then I used delete ("mypic.jpg"); and got "Fatal error: Call to undefined function: delete()" I have PHP Ve

php-windows Digest 5 Mar 2001 23:23:01 -0000 Issue 476

2001-03-05 Thread php-windows-digest-help
php-windows Digest 5 Mar 2001 23:23:01 - Issue 476 Topics (messages 5826 through 5839): Re: $PHP_SELF not producing the goods. 5826 by: Michael Rudel 5827 by: Markus Wagner Re: pulling arrays from nested arrays? 5828 by: Michael Rudel deleting file on server

[PHP-WIN] time stamps in mail headers

2001-03-05 Thread Bob Ferguson
I've got a client that has written a form that emails the results to him. In the email header, he is getting the following: Received: from sounddata.com ([204.182.58.11]) by krim.seanet.com (8.9.3/8.9.3) with ESMTP id NAA09539 for <[EMAIL PROTECTED]>; Fri, 2 Mar 2001 13:41:50 -0800 (PST) Received

[PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops

2001-03-05 Thread Ken
At 02:39 PM 3/5/01 -0500, Chris Poirier wrote: >There is a suggestion in the PHP online documentation that has worked for >me (except in Opera 5, which seems to ignore the Realm). Add a timestamp >to the Realm that changes with each new session. IE 5.0 will prompt for a >different password, beca

[PHP-WIN] MySQL version details

2001-03-05 Thread James Duncan
Does anyone know the PHP command that returns information regarding the MySQL server, it's status, version number, etc? I've seen it mentioned in the past but I can't find a reference to it in the PHP documentation. Thanks James -- PHP Windows Mailing List (http://www.php.net/) To unsubscrib

[PHP-WIN] Help with ODBC to Access query

2001-03-05 Thread S. William Schulz
Hello, I'm trying to get the following query to work: $query1 = 'SELECT COUNT(RunNumber) AS RunCount, DatePart("m", CallDate) AS MonNum FROM CallData WHERE (CallDate Between #1/1/00# AND #12/31/00#) AND Driver = 173

Re: [PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops

2001-03-05 Thread Chris Poirier
Hi Ken, > At 10:56 AM 3/5/01 -0600, John Henckel wrote: > >1. open mytest.php and when the password prompt appears, I enter a userid/password. > >2. I see the "Hello" page with my userid and password. > >3. close IE and reopen mytest.php, again the prompt appears -- this is good. > >4. close IE

[PHP-WIN] transparent

2001-03-05 Thread Bacon Luvva
Hallo, I have software located on another server and I do not wish to disclose the url of that server. Is there a way to transparently download from another server such that no url is ever seen in the status bar using PHP. My whole site is PHP mySQL driven and this is the only area where I am exp

Re: [PHP-WIN] swflib

2001-03-05 Thread Daniel Beulshausen
At 04:17 05.03.2001 +0100, Tomasz Abramowicz wrote: >I was looking around, and i cant seem to find a compiled version of the >swflib extensions for PHP4.0.4pl1 / IIS 4 / NT4server... > >Are they availiable? >If so where? and if someone has 'em, can they send it to me? >otherwise is there a way to

[PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops

2001-03-05 Thread Ken
At 10:56 AM 3/5/01 -0600, John Henckel wrote: >1. open mytest.php and when the password prompt appears, I enter a userid/password. >2. I see the "Hello" page with my userid and password. >3. close IE and reopen mytest.php, again the prompt appears -- this is good. >4. close IE and Restart Windows

Re: [PHP-WIN] Re: IE 5.5,authentication,PHP sessions: IE never stops

2001-03-05 Thread John Henckel
At 09:51 PM 3/4/01 -0500, Ken wrote: >Anyway, can someone please test to see if this doesn't happen in IE5.0? > >I really hate this situation, yessir. I have installed IE 5.00.2614.3500 (that's what came with Win 98 2nd edition CDROM vers 4.10.A) and it does NOT have the problem you have d

Re: [PHP-WIN] deleting file on server

2001-03-05 Thread Tom Mathews
try the unlink() command Glenn wrote: > hallo! > how can i removing files from my upload folder on the server whit php > > Best regards. > /Glenn > > _ > Free email with personality! Over 200 domains! > http://www.MyOwnEmail.com > > -- > PHP Windows Ma

[PHP-WIN] deleting file on server

2001-03-05 Thread Glenn
hallo! how can i removing files from my upload folder on the server whit php Best regards. /Glenn _ Free email with personality! Over 200 domains! http://www.MyOwnEmail.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

RE: [PHP-WIN] pulling arrays from nested arrays?

2001-03-05 Thread Michael Rudel
Hi Doug, could it be possible, that the $first_array["second array"] returns the string "array" instead of the array ?? A possible way to get a copy from your nested array is to write a function like this: $new_array = get_nested_array( $first_array, "second array" ); function get_nested_array

Re: [PHP-WIN] $PHP_SELF not producing the goods.

2001-03-05 Thread Markus Wagner
I used the binary from www.php4win.de an all worked very fine. Attention: use the php.exe in the ISAPI-Directory not in the root-Directory, because of the cgi-redirect option. Jess Perez wrote: > > Hi, > I am using > PHP4.0.4pl1 in cgi mode > Apache 1.3.14 > WIN2000 > > I point my browser at w

RE: [PHP-WIN] $PHP_SELF not producing the goods.

2001-03-05 Thread Michael Rudel
Hi Jess, I'm not sure, but I think it could be the cgi-mode ?! (because of pointing to the php-interpreter php.exe) Greetinx, Mike Michael Rudel - Web-Development, Systemadministration - ___ Suchtreffer AG Bleicherstraße 20 D-78467

php-windows Digest 5 Mar 2001 09:49:10 -0000 Issue 475

2001-03-05 Thread php-windows-digest-help
php-windows Digest 5 Mar 2001 09:49:10 - Issue 475 Topics (messages 5817 through 5825): Re: Cash By Fax 5817 by: cashbyfax2412231.aol.com Re: [PHP] Re: IE 5.5,authentication,PHP sessions: IE never stops 5818 by: Don Read 5819 by: Michael A. Peters Reading data from

Re: [PHP-WIN] Reading data from MySQL

2001-03-05 Thread Tom Mathews
When I load data in from a file, I always make sure that the data is seperated using a character which doesn't occur within the data itself - eg if you have data with spaces in it, then don't use space a seperator. eg LOAD DATA LOCAL INFILE "countries.txt" INTO TABLE Countries FIELDS TERMINATED B