Re: [PHP-WIN] Time - WINCRON is for windows

2001-03-30 Thread Delbono
WinCron is what you are looking for. http://www.erols.com/graysteel/wincron.html I'm using it and it works correctly. - Original Message - From: "Josh Seward" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; "php-gtk" <[EMAIL PROTECTED]> Sent: Saturday, March 31, 2001 5:21 AM Subject

Re: [PHP-WIN] problem with loops

2001-03-30 Thread Yasuo Ohgaki
;;; ; Resource Limits ; ;;; max_execution_time = 30 ; Maximum execution time of each script, in seconds memory_limit = 8M ; Maximum amount of memory a script may consume (8MB) Change above values in php.ini to lower value, especially memory limit if

Re: [PHP-WIN] passing array

2001-03-30 Thread Yasuo Ohgaki
Use htmlspecialchars() instead of addslashes(). Different standard has different methods to escape special characters. Read relevant document for that. Regards, -- Yasuo Ohgaki ""afan"" <[EMAIL PROTECTED]> wrote in message 002a01c0b957$b21b97e0$0e1f49d1@07dzh2k322">news:002a01c0b957$b21b97e0$0

[PHP-WIN] Anyone has list of unsupported function in PHP for Windows?

2001-03-30 Thread Yasuo Ohgaki
As far as I know, binary PHP4.0.5RC1/Apache SAPI/Windows at www.php4win.de does not seem to have pg_cmdtuples() checkdnsrr(), getmxrr() - other network functions possibly Does anyone know the list of functions that are not supported? (Or even better, anyone where get binary that supports them?)

[PHP-WIN] Help!! Again!!(WINDOWS98-APACHE)

2001-03-30 Thread Bhala
How you set up apache so that it will run in the background when I start windows & will shut down when I exit windows???

Re: [PHP-WIN] Re: [PHP-GTK] Time

2001-03-30 Thread Steph
Yes it would, you'd have to do the nasty equation Chris threw at you - Original Message - From: "Josh Seward" <[EMAIL PROTECTED]> To: "Chris Chabot" <[EMAIL PROTECTED]>; "Steph" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; "php-gtk" <[EMAIL PROTECTED]> Sent: Saturday, March 31, 200

php-windows Digest 31 Mar 2001 05:46:43 -0000 Issue 519

2001-03-30 Thread php-windows-digest-help
php-windows Digest 31 Mar 2001 05:46:43 - Issue 519 Topics (messages 6393 through 6403): passing array 6393 by: afan problem with loops 6394 by: afan Re: Parse error after install 6395 by: joerg andreas Re: Database search, http headers 6396 by: joerg andr

Re: [PHP-WIN] Re: [PHP-GTK] Time

2001-03-30 Thread Josh Seward
while (1) > sleep(60*60); > exec('application') > end wouldn't running the exec make the time be off? - Original Message - From: "Chris Chabot" <[EMAIL PROTECTED]> To: "Steph" <[EMAIL PROTECTED]> Cc: "Josh Seward" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]>; "php-gtk" <[EMAIL PROTEC

[PHP-WIN] Re: [PHP-GTK] Time

2001-03-30 Thread Chris Chabot
No both time and sleep use seconds. see http://www.php.net/manual/en/function.sleep.php and http://www.php.net/manual/en/function.time.php respectivly. if you want to use milliseconds, you need to use usleep see http://www.php.net/manual/en/function.usleep.php just nitpicking my last few awake

[PHP-WIN] Re: [PHP-GTK] Time

2001-03-30 Thread Steph
Seconds? I thought milliseconds? Oh well, suck it and see, Josh! ;) - Original Message - From: "Chris Chabot" <[EMAIL PROTECTED]> To: "Josh Seward" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; "php-gtk" <[EMAIL PROTECTED]> Sent: Saturday, March 31, 2001 4:31 AM Subject: Re: [PHP-GTK]

[PHP-WIN] Re: [PHP-GTK] Time

2001-03-30 Thread Chris Chabot
Umm the obvious reply would be to go to download.com and browse to see if they have a shareware version of a cron like application, i am sure they do... i remember seeing some of those. Otherwise, code a simple php or c or delphi or visual basic app that only does while (1) sleep(60*60);

[PHP-WIN] Time

2001-03-30 Thread Josh Seward
Hello, Is there a way to have php run a script at a certain time? What I really need is something like cron on unix systems. I would use windows scheduler but it only goes by days. I ned to run this once every hour. P.S. To let everyone how helped me before. I can now send commands to an out

[PHP-WIN] unhappy camper

2001-03-30 Thread paul morgan
hi, I'm new to this game but have managed to set up apache 1.3.19 that runs php/4.0.4pl1 (the apache dll I think) on Win 98 SE. I've also installed the windows build of mysql, version 3.23 I think and can administer easily via the msdos prompt. I have removed the general root user, as in the mysql

php-windows@lists.php.net

2001-03-30 Thread paulyoung
Have you ever update the MSVCRT.DLL in window system directory "Aleksey Filimonov" <[EMAIL PROTECTED]> wrote in message 991p0e$nk1$[EMAIL PROTECTED]">news:991p0e$nk1$[EMAIL PROTECTED]... > Well in version apache-1.3.19 this bug presence too > > "Tom Mathews" <[EMAIL PROTECTED]> wrote in m

Re: [PHP-WIN] Database search, http headers

2001-03-30 Thread joerg andreas
Hi Mark, searching databases will work with SELECT ... FROM ... WHERE Criteria Like '%Crit%'; Attention please, use the ... Like '%...%' -code for search, only this has worked with my own search function. Reagrds, Joerg "Mark Collins" <[EMAIL PROTECTED]> schrieb in im Newsbeitrag: 99nu1n$9nj$[E

Re: [PHP-WIN] Parse error after install

2001-03-30 Thread joerg andreas
Hi Mark, try this It works with IIS5 and PHP. reagrds, Joerg "Mark Collins" <[EMAIL PROTECTED]> schrieb in im Newsbeitrag: 98t6p0$eti$[EMAIL PROTECTED] > Hello, > > I have installed php on my NT server and I think its all ok, it performs > very simple scripts, however a phpinfo(): gives me t

[PHP-WIN] problem with loops

2001-03-30 Thread afan
Hi, Does anyone know how to in case I make by accident a never-ending-loop stop running program? I just crushed couple times server with loop problem. Thank you! Afan

[PHP-WIN] passing array

2001-03-30 Thread afan
hi guys, my problem is how to pass an array to other page. E.g. I have an array of randomly choose numbers, 11, 7, 5, 10, 6 After I serialize that array I'm getting a:5:{i:0;s:2:"11";i:1;s:1:"7";i:2;s:1:"5";i:3;s:2:"10";i:4;s:1:"6";} Then I addslashes: a:5:{i:0;s:2:\"11\";i:1;s:1:\"7\";i:2;s:1:\"

php-windows Digest 30 Mar 2001 16:05:51 -0000 Issue 518

2001-03-30 Thread php-windows-digest-help
php-windows Digest 30 Mar 2001 16:05:51 - Issue 518 Topics (messages 6389 through 6392): Re: Regular expression under PHP for Win? Missing? 6389 by: Phillip Bow Re: Javascript 6390 by: Tom Mathews Re: Problems with the Header function 6391 by: Yasuo Ohgaki File Up

[PHP-WIN] File Uploads

2001-03-30 Thread PHPWIN
Hi was wondering if anyone had a quick code for: 1) Client Side to upload a simple text file on their system 2) Server side code to handle the text file and place it in the page Cheers Xon -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addi

Re: [PHP-WIN] Problems with the Header function

2001-03-30 Thread Yasuo Ohgaki
According to RFC, Location header need to be absolute URI. (Most browsers accept relative URI, though.) Refer to RFC. -- Yasuo Ohgaki ""Hugo Alexandre Almeida Soares Dias"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > > Hi there, > > I'm using PHP with Wi

Re: [PHP-WIN] Javascript

2001-03-30 Thread Tom Mathews
Thanks all, I was trying the . operator as a concatenator before - must have got my languages mixed up! Tom Tom Mathews wrote: > Window(IDent) > { > >msgWindow=window.open("ContentsWindow.php3?ID=IDent","displayWindow","menubar=no,width=500,height=300") > > } > > The IDent that is passe