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
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
>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
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
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 - 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
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
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
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
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
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
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
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
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
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
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
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
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
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
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 - 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
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
22 matches
Mail list logo