php-general Digest 6 Mar 2010 16:57:20 -0000 Issue 6624

2010-03-06 Thread php-general-digest-help
php-general Digest 6 Mar 2010 16:57:20 - Issue 6624 Topics (messages 302578 through 302579): Re: PEAR clases don't work with PHP 5.3 302578 by: Lester Caine XML functions 302579 by: Ahmad F AlTwaijiry Administrivia: To subscribe to the digest, e-mail:

php-general Digest 7 Mar 2010 05:03:44 -0000 Issue 6625

2010-03-06 Thread php-general-digest-help
php-general Digest 7 Mar 2010 05:03:44 - Issue 6625 Topics (messages 302580 through 302589): Re: XML functions 302580 by: Andre Polykanine 302581 by: Ashley Sheridan 302582 by: Michael A. Peters 302583 by: Michael A. Peters int $number = decode_dtmf(string

[PHP] XML functions

2010-03-06 Thread Ahmad F AlTwaijiry
Dears When i checked the php manual i found many Solutions to read/write xml files and im confused now :) Which function/library is better and is there any new article that compare each function/library? Thanks Ahmad AlTwaijiry http://www.AlTwaijiry.com -- PHP General Mailing List

Re: [PHP] XML functions

2010-03-06 Thread Andre Polykanine
Hello Ahmad and all, I will expand a little bit your question joining to it: what is the better technique to make an RSS feed on the website? The website is manually written, no CMS. -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN: arthaelon @ yandex.ru;

Re: [PHP] XML functions

2010-03-06 Thread Ashley Sheridan
On Sat, 2010-03-06 at 21:50 +0200, Andre Polykanine wrote: Hello Ahmad and all, I will expand a little bit your question joining to it: what is the better technique to make an RSS feed on the website? The website is manually written, no CMS. -- With best regards from

Re: [PHP] XML functions

2010-03-06 Thread Michael A. Peters
Ahmad F AlTwaijiry wrote: Dears When i checked the php manual i found many Solutions to read/write xml files and im confused now :) Which function/library is better and is there any new article that compare each function/library? I use DOMDocument. It works best if the input file you are

Re: [PHP] XML functions

2010-03-06 Thread Michael A. Peters
Andre Polykanine wrote: Hello Ahmad and all, I will expand a little bit your question joining to it: what is the better technique to make an RSS feed on the website? The website is manually written, no CMS. I wrote a class to do it -

[PHP] int $number = decode_dtmf(string wavefile)

2010-03-06 Thread Thilo Klein
Hello, I want to read a wav-file CCITT u-Law 64 kbit/s, 8Bit, Mono, 8 kHz into PHP which contains a DTMF-Code and I want PHP to output the numbers, so I am looking for a function like int $number = decode_dtmf(string wavefile); Is such a function available or is someone kind enough to code

[PHP] int $number = decode_dtmf(string $wavefile)

2010-03-06 Thread Thilo Klein
Hello, I want to read a wav-file CCITT u-Law 64 kbit/s, 8Bit, Mono, 8 kHz into PHP which contains a DTMF-Code and I want PHP to output the numbers, so I am looking for a function like int $number = decode_dtmf(string $wavefile); Is such a function available or is someone kind enough to code it

[PHP] Parse a string containing name and email

2010-03-06 Thread Don
Hi, I am pulling email values out of a database and the format is as follows: John Smithjohn.sm...@somedomain.com I need to parse the string into two variables as such $name = John Smith $email = john.sm...@somedomain.com What would be the easiest way to do this? Thanks. -- PHP General

[PHP] Re: Parse a string containing name and email

2010-03-06 Thread Manuel Lemos
Hello, on 03/06/2010 11:34 PM Don said the following: Hi, I am pulling email values out of a database and the format is as follows: John Smithjohn.sm...@somedomain.com I need to parse the string into two variables as such $name = John Smith $email = john.sm...@somedomain.com What

[PHP] Mail Function In PHP

2010-03-06 Thread Kannan
Hello I am creating a application for our college using the php.In that i want to send mail to all who are all the list. For that i am just simply use the mail function in php without configuring any mail system in the system.But the mail didn't send. For sending the mails wat are

Re: [PHP] Mail Function In PHP

2010-03-06 Thread Devendra Jadhav
You need SMTP Server for this.. Read bellow link to know more how to configure SMTP Server in PHP http://email.about.com/od/emailprogrammingtips/qt/Configure_PHP_to_Use_a_Remote_SMTP_Server_for_Sending_Mail.htm

Re: [PHP] Mail Function In PHP

2010-03-06 Thread Kevin Kinsey
Kannan wrote: Hello I am creating a application for our college using the php.In that i want to send mail to all who are all the list. For that i am just simply use the mail function in php without configuring any mail system in the system.But the mail didn't send. For sending the

Re: [PHP] Parse a string containing name and email

2010-03-06 Thread Kevin Kinsey
Don wrote: Hi, I am pulling email values out of a database and the format is as follows: John Smithjohn.sm...@somedomain.com I need to parse the string into two variables as such $name = John Smith $email = john.sm...@somedomain.com What would be the easiest way to do this? Thanks. [36]