[PHP] User email changes verification strategy?

2004-08-29 Thread FrzzMan
Hello, I'm adding some verification into my user database manager. After a while I come up with some ideas about asking user to verify their email address when they change their email address. But, the strategy is a lil confusing for me. When they change the email address. Where should the verif

[PHP] Re: attaching a custom icon to a file on server side

2004-08-29 Thread FrzzMan
[EMAIL PROTECTED] wrote: I want to attach a custom icon to a dynamically created text file on the server-side when the user downloads the file to his desktop, there is a custom icon...ico file attached to it... is this possible ? g nah, you can't embed binary data (icon file) into text file

Re: [PHP] Dynamic HTML Creation

2004-08-29 Thread FrzzMan
Sam Hobbs wrote: "Ramil Sagum" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Ah. You should have said this in your first mail (which was confusing). It now becomes clear. I think what you are looking for is a template engine, like smarty http://smarty.php.net/ If Smarty is a good sol

Re: [PHP] Why won't my echo won't work? [newbie question]

2004-08-29 Thread FrzzMan
John Nichel wrote: [EMAIL PROTECTED] wrote: The first two of these 3 echo statements work. But my last echo doesn't. 'username' is the name of the element I want to echo. To the right of each is what I see echoed. echo $_SERVER['REQUEST_METHOD']; echos -> POST echo $_POST;

Re: [PHP] Object Overloading in PHP5

2004-08-29 Thread FrzzMan
Daniel Schierbeck wrote: Stefan wrote: It's a bug. * Siehe http://bugs.php.net/bug.php?id=28444 ... und ... * http://news.php.net/php.bugs/63652 A workaround is possible using __call( $name, $args) { return( $this->__get( $name)); }. But it sucks, since constructs using array indi

[PHP] SOAP speed

2004-08-28 Thread FrzzMan
Hello, I'm developing some site that will share the same UserDB, because these site are quite large in scale so I decided to host it on different servers. Each site will have it own cache of active user on the site, so the user wont' have to be authenticated every request (will be a pain in the

Re: [PHP] recompile your PHP installation with --with-mysql optio

2004-06-21 Thread FrzzMan
Why did you set the dir to /usr/local/sql??? Did you have mysql there??? It's not the normal installation dir of mysql... Long P Nguyen wrote: I recompiled PHP with --with-mysql=/usr/local/sql and still got the following errors: Checking PHP configuration settings PHP version... success [4.2.2] DOM

[PHP] Behaviour of get_class_methods() and get_class_vars()

2004-06-14 Thread FrzzMan
This copy directly from my bug report, someone here do you know any way around for this problem. -- Description: When get_class_vars() return every properties of the class, private and protected members are mark with [Class Name] and * before i

Re: [PHP] protecting your source code?

2004-06-14 Thread FrzzMan
Surely you can't include files that way, that php file will be process and you will end up include its result. Try include using file system path instead, it will work... About your question about source code protecting, try Turck MMCache, it's a optimizer (the best I known) plus it have encode

Re: [PHP] [PHP5] Super constructor?

2004-06-13 Thread FrzzMan
; echo $GrandChildClass; ?> It resulted: ParentClass::__construct() GrandChildClass::__construct() Object id #1 Could anyone kindly tell me why the string "Object id #1" is printed? Thanks Dinh Chris wrote: FrzzMan wrote: Hi guys, hey don't laugh at the subject, in fact I don't what to

Re: [PHP] [PHP5] Super constructor?

2004-06-13 Thread FrzzMan
ically... Any idea are welcome :D Chris wrote: FrzzMan wrote: Hi guys, hey don't laugh at the subject, in fact I don't what to call it, so let's call it super constructor :D Let's see following code... class Base { __construct() { // Do something } } class On

[PHP] [PHP5] Super constructor?

2004-06-12 Thread FrzzMan
Hi guys, hey don't laugh at the subject, in fact I don't what to call it, so let's call it super constructor :D Let's see following code... class Base { __construct() { // Do something } } class One extends Base { __construct() {