RE: [PHP] mail() silly question

2007-09-01 Thread Brian Seymour
As a general rule, use ' ' for literal strings and " " for strings you want escaped characters and such to take effect. Example: echo 'foo\nbar' will echo foo\nbar where as echo "foo\nbar" will echo foo bar Hope this helped. Brian Seymour Zend Cer

[PHP] Authentication script working in firefox but strange results in ie7

2007-08-04 Thread Brian Seymour
ere username='{$this->clean[username]}' and password='{$this->clean[password]}'"); $this->retId = $this->retId[$retVal]; } return true; }

RE: [PHP] HELP - I have tried to unsubscribe from this listmutipletimes but cannot.

2007-06-30 Thread Brian Seymour
Patrick, did you trying going to http://www.php.net/unsub.php yet? =D Brian Seymour AeroCoreProductions http://www.aerocore.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Re: php framework, large site

2007-06-17 Thread Brian Seymour
Depends, is time a factor. If not, why not write your own framework. Brian Seymour AeroCoreProductions http://www.aerocore.net/ -Original Message- From: Crayon Shin Chan [mailto:[EMAIL PROTECTED] Sent: Sunday, June 17, 2007 1:53 PM To: php-general@lists.php.net Subject: Re: [PHP] Re: php

[PHP] When and when not to use ' and "

2007-06-02 Thread Brian Seymour
r second option didn't work. Can anybody shed some light on this? Brian Seymour AeroCoreProductions http://www.aerocore.net/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] OOB problem, super stumped.

2007-05-30 Thread Brian Seymour
nless specified otherwise(calling parents constructor)? Brian Seymour AeroCoreProductions http://www.aerocore.net/ -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 30, 2007 12:02 AM To: Brian Seymour Cc: 'php php' Subject: Re: [PHP] OOB problem

RE: [PHP] OOB problem, super stumped. (resolved)

2007-05-29 Thread Brian Seymour
that =D. But anyhow, problem solved. Brian Seymour AeroCoreProductions http://www.aerocore.net/ -Original Message- From: Robert Cummings [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 29, 2007 10:51 PM To: Brian Seymour Cc: 'php php' Subject: Re: [PHP] OOB problem, super stumped. On Tu

[PHP] OOB problem, super stumped.

2007-05-29 Thread Brian Seymour
I am super stumped. This works fine separately but when I put everything together it breaks. I has an authenticate class and a sql class. However I always get the same error. SQL class. host=$host; $this->user=$user; $this->pass=$pass; $

RE: [PHP] Too many records to display in one web page

2007-05-27 Thread Brian Seymour
Jim, Your totally right, must have slipped my mind. Brian Seymour AeroCoreProductions http://www.aerocore.net/ -Original Message- From: Jim Lucas [mailto:[EMAIL PROTECTED] Sent: Sunday, May 27, 2007 1:07 AM To: Brian Seymour Cc: php-general@lists.php.net Subject: Re: [PHP] Too many

RE: [PHP] Too many records to display in one web page

2007-05-26 Thread Brian Seymour
is helped. Brian Seymour AeroCoreProductions http://www.aerocore.net/ -Original Message- From: Eduardo Vizcarra [mailto:[EMAIL PROTECTED] Sent: Saturday, May 26, 2007 7:18 PM To: php-general@lists.php.net Subject: [PHP] Too many records to display in one web page Hi All I am developing a

RE: [PHP] What does "<<<" mean?

2007-04-30 Thread Brian Seymour
Heredoc is truly a great thing. You'll learn to love heredoc whenever you have tons of stuff you need to print instead of escaping php. A great example is output that comes from classes, where you can't break the class into multiple code blocks. Just don't forget that heredoc end part has to be on

RE: [PHP] PHP & Text Messaging

2007-04-19 Thread Brian Seymour
I know vtext.com sends email to phones. Perhaps using the mail function you could just send a message to [EMAIL PROTECTED] and they would get the message. To my knowledge this is a free service and works with all phone providers since they do the message for you. Just a thought. Hope this helps,