Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Liam MacKenzie
echo My dog has \fleas\; - Original Message - From: Shane [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 25, 2002 9:20 AM Subject: [PHP] HELP!!! QUOTES! Question Please. What is the syntax for getting double quotes to appear in an echo statement. EXAMPLE: echo My dog

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Richard Baskett
Well if there are no variables to be parsed just do it like this: echo 'My dog has fleas'; // notice single quotes If there are variables to be parsed to it like this: echo My dog has \$var\; Cheers! Rick If I accept you as you are, I will make you worse; however, if I treat you as though

RE: [PHP] HELP!!! QUOTES!

2002-05-24 Thread John Holmes
Escape the quotes with \ echo My dog has \fleas\; Or use single quotes echo 'My dog has fleas'; But note that variables aren't evaluated within single quotes. ---John Holmes... -Original Message- From: Shane [mailto:[EMAIL PROTECTED]] Sent: Friday, May 24, 2002 7:21 PM To:

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Philip Olson
Read a tutorial about using strings here: http://www.zend.com/zend/tut/using-strings.php The manual also talks about them: http://www.php.net/manual/en/language.types.string.php Regards, Philip Olson On Fri, 24 May 2002, Shane wrote: Question Please. What is the syntax for getting