[PHP] foreach statement

2003-03-25 Thread shaun
how do i surpress an error message for a foreach statement? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] foreach statement

2003-03-25 Thread Richard Whitney
Get rid of the error Quoting shaun [EMAIL PROTECTED]: ### how do i surpress an error message for a foreach statement? ### ### ### ### -- ### PHP General Mailing List (http://www.php.net/) ### To unsubscribe, visit: http://www.php.net/unsub.php ### ### -- Richard Whitney * Transcend

RE: [PHP] foreach statement

2003-03-25 Thread Jennifer Goodie
){ //do stuff } } -Original Message- From: shaun [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 3:23 PM To: [EMAIL PROTECTED] Subject: [PHP] foreach statement how do i surpress an error message for a foreach statement? -- PHP General Mailing List (http

Re: [PHP] foreach statement

2003-03-25 Thread Jim Lucas
] To: shaun [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 3:34 PM Subject: RE: [PHP] foreach statement You don't. From http://www.php.net/manual/en/control-structures.foreach.php Note: foreach does not support the ability to suppress error messages using '@'. You should

RE: [PHP] foreach statement

2002-01-09 Thread Niklas Lampén
-General Subject: RE: [PHP] foreach statement Hey Niklas yea thats what I want, just one thing foreach($emails as $this_is_one_address) { would it be foreach($emails) { or am I missing something in there ? ? ? $sms_list = test_number; // This is the file with one e-mail address

RE: [PHP] foreach statement

2002-01-09 Thread Chris Grigor
Thanks!! its working !!! ***BIG SMILE Niklas you genious -Original Message- From: Niklas Lampén [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 09, 2002 10:15 AM To: Php-General Subject: RE: [PHP] foreach statement Foreach works in PHP just like I told. foreach

RE: [PHP] foreach statement

2002-01-09 Thread Niklas Lampén
You're welcome. :) Niklas P.S. I know... ;) -Original Message- From: Chris Grigor [mailto:[EMAIL PROTECTED]] Sent: 9. tammikuuta 2002 10:23 To: '[EMAIL PROTECTED]'; Php-General Subject: RE: [PHP] foreach statement Thanks!! its working !!! ***BIG SMILE Niklas you genious

[PHP] foreach statement

2002-01-08 Thread Chris Grigor
Okay lets see who has there thinking caps on today (cos I really dont) I have a list of email addresses stored in a text file. I am able to run the script and get all the mail addresses in the list mailed but thats all in one mail. I want to be able to open the file, chop each line and send

RE: [PHP] foreach statement

2002-01-08 Thread Niklas Lampén
}; Niklas -Original Message- From: Chris Grigor [mailto:[EMAIL PROTECTED]] Sent: 9. tammikuuta 2002 8:59 To: 'Php-General-List (E-mail)' Subject: [PHP] foreach statement Okay lets see who has there thinking caps on today (cos I really dont) I have a list of email addresses stored

RE: [PHP] foreach statement

2002-01-08 Thread Chris Grigor
: [PHP] foreach statement Okay lets see who has there thinking caps on today (cos I really dont) I have a list of email addresses stored in a text file. I am able to run the script and get all the mail addresses in the list mailed but thats all in one mail. I want to be able to open the file

Re: [PHP] foreach statement

2002-01-08 Thread David Balatero
11.44 PM Subject: RE: [PHP] foreach statement Hey Niklas yea thats what I want, just one thing foreach($emails as $this_is_one_address) { would it be foreach($emails) { or am I missing something in there ? ? ? $sms_list = test_number; // This is the file