Re: quotes problem (solved).

2003-10-20 Thread Sara
:) its solved, sorry I was making a mistake. Thank you all for prompt help. Sara. - Original Message - From: "Hanson, Rob" <[EMAIL PROTECTED]> To: "'Sara'" <[EMAIL PROTECTED]>; "beginners-cgi" <[EMAIL PROTECTED]> Sent: Tue

Re: quotes problem

2003-10-20 Thread Sara
20test%20field Sara. - Original Message - From: "Hanson, Rob" <[EMAIL PROTECTED]> To: "'Sara'" <[EMAIL PROTECTED]>; "beginners-cgi" <[EMAIL PROTECTED]> Sent: Tuesday, October 21, 2003 4:05 AM Subject: RE: quotes problem > I'm not sure if

RE: quotes problem

2003-10-20 Thread Hanson, Rob
I'm not sure if John or Greg from the previous answers understand the question... or maybe it is me that is misunderstanding it. You are receiving a string from the query string that includes quotes, but it isn't printing the whole value. Correct? If that is the case, I am not sure I know where

Re: quotes problem

2003-10-20 Thread Greg Bolshaw
On Mon, 20 Oct 2003 03:55:40 +0500 "Sara" <[EMAIL PROTECTED]> wrote: > # Lets Suppose the form Input contains the quotes in the string e.g. > > $field = "This is the string "which" contains the quotes"; > > The script stops printing everything after first quote ("), I KNOW where the problem > i

RE: quotes problem

2003-10-20 Thread Canavan, John
Did you try making the quote line read: $field = qq(This is the string "which" contains the quotes); ??? That's the trick I always use. John -Original Message- From: Sara [mailto:[EMAIL PROTECTED] Sent: Sunday, October 19, 2003 16:56 To: beginners-cgi Subject: quotes problem #