Re: [PHP] where php at?

2006-03-27 Thread Chris
tedd wrote: At 12:45 PM +1100 3/28/06, Chris wrote: tedd wrote: At 11:26 PM +0200 3/27/06, Ryan A wrote: Ooops, and lets not forget this one: curl http://www.yoursite.com/path/to/script/yourscript.php you can put that in your cron job by going to cpanel its a long way round but someti

[PHP] unset a constant

2006-03-27 Thread Suhas
Hi, How do I unset a defined variable. e.g. define('AA',1); unset(AA) // gives error any suggestions! Thanks SP

Re: [PHP] unset a constant

2006-03-27 Thread Chris
Suhas wrote: Hi, How do I unset a defined variable. You can't. What do you want to do that for? -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] unset a constant

2006-03-27 Thread Jasper Bryant-Greene
There is no way using the core language. You can, however, use the runkit function if you absolutely have to: http://php.net/runkit_constant_remove Jasper Suhas wrote: Hi, How do I unset a defined variable. e.g. define('AA',1); unset(AA) // gives error any suggestions! Thanks SP -- P

Re: [PHP] Why Should I Use Zend Optimizer?

2006-03-27 Thread Rasmus Lerdorf
Ray Hauge wrote: Still right on with the pre-compiling though ;) I find that the Optimizer has value. If you wanted to cache on top of that you could probably speed it up even further with cached responses (APC or I think Zend has one too) Without an opcode cache, using the optimizer is goin

[PHP] page expire error

2006-03-27 Thread suresh kumar
Hai, i am facing one problem in my project.I am using 2 pages for search operation. In Search page 1: i am having 3 fields say Company name,state,country. when user enters search key in their corresponding field and press submit button. search result will be displayed in

[PHP] Re: page expire error

2006-03-27 Thread Barry
suresh kumar wrote: Hai, i am facing one problem in my project.I am using 2 pages for search operation. In Search page 1: i am having 3 fields say Company name,state,country. when user enters search key in their corresponding field and press submit button. search resul

Re: [PHP] protecting passwords when SSL is not available

2006-03-27 Thread Satyam
You are absolutely right! I love this list! I didn't realize that I was sending the session_id. Let's see if this works. On first serving the login page I create a session and also a unique_id via uniqid(). I store the unique_id in the session and send it as a challenge to the client along

<    1   2