[PHP] Web service in PHP

2006-07-07 Thread Pham Huu Le Quoc Phuc
Hi! I want to build a Web Service in PHP. Could you give me some explain about this problem. Have any framework of Web service in PHP? Please help me! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] A way to stop spam on this list

2006-06-19 Thread Pham Huu Le Quoc Phuc
I'm too! :( -Original Message- From: Denis Gerasimov [mailto:[EMAIL PROTECTED] Sent: Monday, June 19, 2006 1:23 PM To: php-general@lists.php.net Subject: [PHP] A way to stop spam on this list Hello List Members, I am very tired of deleting spam messages received from PHP mailing

[PHP] [EMAIL PROTECTED]

2006-06-15 Thread Pham Huu Le Quoc Phuc
-Original Message- From: Jochem Maas [mailto:[EMAIL PROTECTED] Sent: Thursday, June 15, 2006 5:20 PM To: Barry Cc: php-general@lists.php.net Subject: Re: [PHP] Re: File Download Headers Barry wrote: Richard Lynch schrieb: and are all you can find from Google? O_o Anybody?

[PHP] What is best framwork?

2006-05-26 Thread Pham Huu Le Quoc Phuc
Hi! I intend to write a sale online web use PHP and MySQL. I want to find a best framework(available) of php. Could you give me some advice? Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to convert a string( 23/04/2006) to a string 23042006 in javascript?

2006-04-25 Thread Pham Huu Le Quoc Phuc
Hi you! I am a newbie to web programming, I have a following problem: I have a string: 23/04/2006, want to convert it become 23042006 in javascript. Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] How to create a photo gallery

2006-04-11 Thread Pham Huu Le Quoc Phuc
Please help me! I want to create a photo gallery, user can upload pictures. Thanks. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and CakePHP: How to use the $html-selectTag()

2006-04-10 Thread Pham Huu Le Quoc Phuc
Hi everybody! I'm a newbie. My question maybe very funny. But please answer to me if you have any ideas. I use $html-selectTag(), I don't know how to use OnChange. When User choose a item on SelectTag, I want Browser to redirect another page and get current value. Thank so much! -- PHP General

[PHP] How to use check box in CakePHP?

2006-04-09 Thread Pham Huu Le Quoc Phuc
Hi everybody! I want to use a checkbox in Add, Edit form with CakePHP. How to do? Please help me! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to use check box in CakePHP?

2006-04-09 Thread Pham Huu Le Quoc Phuc
Could you give me a example? - Original Message - From: Chris [EMAIL PROTECTED] To: Pham Huu Le Quoc Phuc [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Monday, April 10, 2006 10:39 AM Subject: Re: [PHP] How to use check box in CakePHP? Pham Huu Le Quoc Phuc wrote: Hi

[PHP] Is it a bug of CakePHP?

2006-04-07 Thread Pham Huu Le Quoc Phuc
I catch an error, could you tell me if you have some ideas? class Dsptraining extends AppModel { function GetDsptrainings() { return $this-findBySql(select max(start_date) start_date from tbl_dsptrainings); } } class DsptrainingsController extends AppController {

Re: [PHP] Is it a bug of CakePHP?

2006-04-07 Thread Pham Huu Le Quoc Phuc
Thanks for relying! But, Do not have anyway to solve this problem. - Original Message - From: nicolas figaro [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Friday, April 07, 2006 3:49 PM Subject: Re: [PHP] Is it a bug of CakePHP? Pham Huu Le Quoc Phuc a écrit : I catch

[PHP] CakePHP Undefined variable

2006-03-31 Thread Pham Huu Le Quoc Phuc
Hi everyone! I use CakePHP. I found an error. Could you help me to deal this error. Notice: Undefined variable: missing in c:\Inetpub\wwwroot\Cake\app\views\errors\missing_controller.php on line 18 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] How to debug in CakePHP.

2006-03-31 Thread Pham Huu Le Quoc Phuc
Hi everybody! I use cake, I have an error, but I can't find where the error occurs. Have any tools for debug? Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and CakePHP

2006-03-30 Thread Pham Huu Le Quoc Phuc
I use CakePHP The folowing code do not execute: td align=center ?=(!empty($info['Employee']['dob'])) ? $datetime-time2str($info['Employee']['dob']) : ? /td -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and CakePHP

2006-03-30 Thread Pham Huu Le Quoc Phuc
/ . $info['Employee']['id']) ? /td /tr ?php endforeach; ? - Original Message - From: chris smith [EMAIL PROTECTED] To: Pham Huu Le Quoc Phuc [EMAIL PROTECTED] Cc: php-general@lists.php.net Sent: Thursday, March 30, 2006 5:20 PM Subject: Re: [PHP] PHP and CakePHP

Re: [PHP] Test email

2006-03-24 Thread Pham Huu Le Quoc Phuc
- Original Message - From: PHP Mailer [EMAIL PROTECTED] To: php-general@lists.php.net Sent: Saturday, March 25, 2006 10:59 AM Subject: [PHP] Test email Seems pretty dead tonight. Checking POP3 quickly. Ignore this email or reply kindest! =) -- PHP General Mailing List

Re: [PHP] Parents constructor

2006-03-23 Thread Pham Huu Le Quoc Phuc
In PHP, I can do the flowing code: interface A { function Get(); } class B extends A { function Get() { echo class B; } } class C extends A { echo class C; } $a = new B(); $a-Get(); $a = new C(); $a-Get(); result: Class B Class C - Original Message - From: Robert

Re: [PHP] Parents constructor

2006-03-23 Thread Pham Huu Le Quoc Phuc
I want to execute polymorphism. - Original Message - From: Robert Cummings [EMAIL PROTECTED] To: Pham Huu Le Quoc Phuc [EMAIL PROTECTED] Cc: Peter Lauri [EMAIL PROTECTED]; PHP-General php-general@lists.php.net Sent: Friday, March 24, 2006 2:01 PM Subject: Re: [PHP] Parents constructor