php-general Digest 13 Nov 2005 05:02:07 -0000 Issue 3791

2005-11-12 Thread php-general-digest-help
php-general Digest 13 Nov 2005 05:02:07 - Issue 3791 Topics (messages 225674 through 225691): Re: php session in ie 225674 by: sunaram patir 225675 by: adriano ghezzi 225677 by: sunaram patir Re: emailing MySQL list not working 225676 by: Bruce Gilbert

Re: [PHP] emailing MySQL list not working

2005-11-12 Thread Marco Kaiser
Hi, try to add in your $headers linebreaks. (\r\n). -- Marco $headers = From: $sender; $headers .= Reply-To: $reply_to; $headers .= Return-Path: $return_path; $headers .= X-Sender: $x_sender; $headers .= X-Mailer: PHP4\n; //mailer $headers

Re: [PHP] Catch the WMV first frame picture in PHP script?

2005-11-12 Thread M
張 峰銘 wrote: Mr. M: Hello, thanks for your kind help. But my Linux system is Fedora Core 1 , there isn't any totem-video-thumbnailer. What should I do? Do I have to upgrade the Linux system to FC 3 or heigher ? (the Totem exists in FC3 ) or Is there any other method to solve this

Re: [PHP] arrays question

2005-11-12 Thread Brian V Bonini
On Fri, 2005-11-11 at 15:25, cybermalandro cybermalandro wrote: I have this that looks like this array(3) { [0]= array(2) { [0]= string(1) 1 [1]= string(1) 2 } [1]= array(2) { [0]= string(3) 492 [1]= string(3) 211 } [2]= array(2)

[PHP] Re: php session in ie

2005-11-12 Thread James Benson
sunaram patir wrote: Hi, i am having problem with internet explorer. i am working on a project on building a website where i need to keep track of the users i.e. i use a login system in there in short. with the following code i check whether the user is logged in or not. ?php session_start();

[PHP] Recommendations for the Zend PHP Certification

2005-11-12 Thread Gustavo Narea
Hello everybody. I want to take the ZPC test the next year and I am going to buy these books: - Zend PHP Certification Study Guide. - Zend PHP Certification Practice Test Book. Are these ones enough? Should I get other books? By the way, my skills are oriented to LAMP and according to what

Re: [PHP] Re: php session in ie

2005-11-12 Thread sunaram patir
On 11/12/05, James Benson [EMAIL PROTECTED] wrote: sunaram patir wrote: Hi, i am having problem with internet explorer. i am working on $_SESSION['myurl']=$_SERVER['PHP_SELF']; if(!isset($_SESSION['student_username']) !isset($_SESSION['student_password'])) header(Location:

Re: [PHP] php session in ie

2005-11-12 Thread adriano ghezzi
to be redirected to login must have at least one of ( if(!isset($_SESSION['student_username']) !isset($_SESSION['student_password'])) ) not set, which one (or both) fail under i.e. ??? hth ag. 2005/11/11, sunaram patir [EMAIL PROTECTED]: Hi, i am having problem with internet explorer. i

[PHP] Re: emailing MySQL list not working

2005-11-12 Thread Bruce Gilbert
I don't suppose you meant like this : $headers = From: $sender;(\r\n). or is it without the ( )? thanks On 11/12/05, Marco Kaiser [EMAIL PROTECTED] wrote: Hi, try to add in your $headers linebreaks. (\r\n). -- Marco $headers = From: $sender; $headers .=

Re: [PHP] php session in ie

2005-11-12 Thread sunaram patir
On 11/12/05, adriano ghezzi [EMAIL PROTECTED] wrote: to be redirected to login must have at least one of ( if(!isset($_SESSION['student_username']) !isset($_SESSION['student_password'])) ) not set, which one (or both) fail under i.e. ??? hth if both of them aren't set, the user is

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-12 Thread Marco Kaiser
Hi Gustavo, I want to take the ZPC test the next year and I am going to buy these books: - Zend PHP Certification Study Guide. - Zend PHP Certification Practice Test Book. Take the Study Guide from php-architect. Its better than the Zend book. By the way, my skills are oriented to

[PHP] php/linux user groups in the east bay area..

2005-11-12 Thread bruce
hi.. anybody know of any php/linux/apache user groups in the east bay (dublin/pleasanton/san ramon/etc...) area? need to join one to find other like minded php/linux guys who are into developing.. thanks -bruce -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] php/linux user groups in the east bay area..

2005-11-12 Thread Esteamedpw
Check the PHP.net site or PHPClasses.org -- they both have a good list of these groups.

Re: [PHP] Re: emailing MySQL list not working

2005-11-12 Thread Jasper Bryant-Greene
Bruce Gilbert wrote: I don't suppose you meant like this : $headers = From: $sender;(\r\n). or is it without the ( )? I think you should read up on some basic PHP syntax (the manual is your friend. He meant like this: $headers = From: $sender\r\n; $headers .= Reply-To:

RE: [PHP] php/linux user groups in the east bay area..

2005-11-12 Thread bruce
let me ask the question in a different way? is there anyone in the bay area (dublin/san jose/santa clara/san francisco/etc...) who would like to get together to talk code/work on projects/etc... checked out the existing user groups.. they look rather empty... -bruce -Original Message-

[PHP] Printing to a buffer

2005-11-12 Thread Todd Cary
My client's new shared server does not allow printing to a file, so I want my print statement to print to a buffer, then I'll send it to the user via Headers. This does not work since print does no go to the buffer, or at least appears not to: I get the errors from the header statements; ?

Re: [PHP] Printing to a buffer

2005-11-12 Thread Jasper Bryant-Greene
Todd Cary wrote: My client's new shared server does not allow printing to a file, so I want my print statement to print to a buffer, then I'll send it to the user via Headers. This does not work since print does no go to the buffer, or at least appears not to: I get the errors from the header

RE: [PHP] Printing to a buffer

2005-11-12 Thread php-mail
-Original Message- From: Jasper Bryant-Greene [mailto:[EMAIL PROTECTED] [snip] application/text isn't a MIME-Type, is it? Do you mean text/plain? [/snip] Or maybe text/html? Sent: 12 November 2005 22:46 To: Todd Cary Cc: php-general@lists.php.net Subject: Re: [PHP] Printing to a

Re: [PHP] Printing to a buffer

2005-11-12 Thread Todd Cary
Yup! It was the missing parentheses! Works as planned. Many thanks The application/text gives the user the ability; text/plain does not seem to do that. I just tried application/text since I use application/pdf for other applications. Todd Jasper Bryant-Greene wrote: Todd Cary

Re: [PHP] Re: emailing MySQL list not working

2005-11-12 Thread Marco Kaiser
Hi Bruce, first, there are just \n in your last header assignment. I think you should test it a bit mir, Try to send mails without the optional header. If this not work ask here again. -- Marco $headers .= Mime-Version:1.0\n Content-Type: text/plain;

Re: [PHP] Printing to a buffer

2005-11-12 Thread Jasper Bryant-Greene
Todd Cary wrote: Yup! It was the missing parentheses! Works as planned. Many thanks The application/text gives the user the ability; text/plain does not The ability to...? seem to do that. I just tried application/text since I use application/pdf for other applications. Whatever

[PHP] Seg fault in PHP 5.0.5

2005-11-12 Thread Dean Householder
Has anyone had any problems with PHP 5.0.5 getting seg faults when trying to replace extended ascii characters? I'm trying to replace the following characters: Â °, with degrees. I am able to detect these characters in the string, but when I try replacing it, PHP seg faults. I've tried

Re: [PHP] Recommendations for the Zend PHP Certification

2005-11-12 Thread Gustavo Narea
Hello, Marco. Thanks for your response! Marco Kaiser wrote: Hi Gustavo, I want to take the ZPC test the next year and I am going to buy these books: - Zend PHP Certification Study Guide. - Zend PHP Certification Practice Test Book. Take the Study Guide from php-architect. Its better than