Re: [PHP] quotes in php.ini

2003-10-29 Thread - Edwin -
On Tue, 28 Oct 2003 22:28:12 -0800 Evan Nemerson <[EMAIL PROTECTED]> wrote: > On Wednesday 29 October 2003 12:30 am, - Edwin - wrote: > > On Tue, 28 Oct 2003 22:05:56 -0800 > > > > Evan Nemerson <[EMAIL PROTECTED]> wrote: > > > On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: > > > > Hi, > >

Re: [PHP] quotes in php.ini

2003-10-29 Thread - Edwin -
On Wed, 29 Oct 2003 03:29:13 -0500 Leif K-Brooks <[EMAIL PROTECTED]> wrote: > - Edwin - wrote: > > >Interesting. Where? > > > > > www.w3.org ? Sorry, *won't* find it there... In fact, a quick Google search gives you this: http://www.w3.org/TR/REC-html32 [quote] Attribute values can be quo

Re: [PHP] quotes in php.ini

2003-10-29 Thread Curt Zirzow
* Thus wrote Leif K-Brooks ([EMAIL PROTECTED]): > Curt Zirzow wrote: > > >Try reversing the quotes: > >error_prepend_string = ""; > > > > > Not valid XHTML (not sure if it's even valid HTML). Sure it is, the quote character can be either ' or " and will validate perfectly fine at w3c. now the fo

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Wednesday 29 October 2003 12:30 am, - Edwin - wrote: > On Tue, 28 Oct 2003 22:05:56 -0800 > > Evan Nemerson <[EMAIL PROTECTED]> wrote: > > On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: > > > Hi, > > > > > > On Wed, 29 Oct 2003 02:10:49 -0500 > > > > > > Leif K-Brooks <[EMAIL PROTECTED]>

Re: [PHP] quotes in php.ini

2003-10-29 Thread Leif K-Brooks
- Edwin - wrote: Interesting. Where? www.w3.org -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

Re: [PHP] quotes in php.ini

2003-10-29 Thread - Edwin -
On Tue, 28 Oct 2003 22:05:56 -0800 Evan Nemerson <[EMAIL PROTECTED]> wrote: > On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: > > Hi, > > > > On Wed, 29 Oct 2003 02:10:49 -0500 > > > > Leif K-Brooks <[EMAIL PROTECTED]> wrote: > > > Curt Zirzow wrote: > > > >Try reversing the quotes: > > > >

Re: [PHP] quotes in php.ini

2003-10-29 Thread - Edwin -
On Wed, 29 Oct 2003 03:22:54 -0500 Leif K-Brooks <[EMAIL PROTECTED]> wrote: > - Edwin - wrote: > > >Why not? > > > > > Because that's what the standard says. Interesting. Where? - E - __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.

Re: [PHP] quotes in php.ini

2003-10-29 Thread Leif K-Brooks
- Edwin - wrote: Why not? Because that's what the standard says. -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: htt

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: > Hi, > > On Wed, 29 Oct 2003 02:10:49 -0500 > > Leif K-Brooks <[EMAIL PROTECTED]> wrote: > > Curt Zirzow wrote: > > >Try reversing the quotes: > > > error_prepend_string = ""; > > > > Not valid XHTML (not sure if it's even valid HTML). > > Why

Re: [PHP] quotes in php.ini

2003-10-29 Thread - Edwin -
Hi, On Wed, 29 Oct 2003 02:10:49 -0500 Leif K-Brooks <[EMAIL PROTECTED]> wrote: > Curt Zirzow wrote: > > >Try reversing the quotes: > > error_prepend_string = ""; > > > > > Not valid XHTML (not sure if it's even valid HTML). Why not? - E - __ D

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Tuesday 28 October 2003 10:46 pm, [EMAIL PROTECTED] wrote: > Evan Nemerson wrote: > >Is anyone aware of a way to get double quotes in the php.ini file? For > >instance, I'd like to be able to set error_prepend_string to " >color=\"#ff\">" (which doesn't work). > > > >The only work-around I c

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Tuesday 28 October 2003 11:10 pm, Leif K-Brooks wrote: > Curt Zirzow wrote: > >Try reversing the quotes: > > error_prepend_string = ""; > > Not valid XHTML (not sure if it's even valid HTML). Yup. I've got the highlight_file thing from earlier working with ini entries, and I'm wondering how pe

Re: [PHP] quotes in php.ini

2003-10-29 Thread Leif K-Brooks
Curt Zirzow wrote: Try reversing the quotes: error_prepend_string = ""; Not valid XHTML (not sure if it's even valid HTML). -- The above message is encrypted with double rot13 encoding. Any unauthorized attempt to decrypt it will be prosecuted to the full extent of the law. -- PHP General Ma

Re: [PHP] quotes in php.ini

2003-10-29 Thread Curt Zirzow
* Thus wrote Evan Nemerson ([EMAIL PROTECTED]): > On Tuesday 28 October 2003 11:29 pm, Rolf Brusletto wrote: > > Evan Nemerson wrote: > > >Is anyone aware of a way to get double quotes in the php.ini file? For > > >instance, I'd like to be able to set error_prepend_string to " > >color=\"#ff\">

Re: [PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
On Tuesday 28 October 2003 11:29 pm, Rolf Brusletto wrote: > Evan Nemerson wrote: > >Is anyone aware of a way to get double quotes in the php.ini file? For > >instance, I'd like to be able to set error_prepend_string to " >color=\"#ff\">" (which doesn't work). > > > >The only work-around I can

Re: [PHP] quotes in php.ini

2003-10-28 Thread ary . p . wibowo
Evan Nemerson wrote: >Is anyone aware of a way to get double quotes in the php.ini file? For >instance, I'd like to be able to set error_prepend_string to "color=\"#ff\">" (which doesn't work). > >The only work-around I can think of is doing ini_set()'s in an >auto_prepend_file, and that's n

Re: [PHP] quotes in php.ini

2003-10-28 Thread Rolf Brusletto
Evan Nemerson wrote: Is anyone aware of a way to get double quotes in the php.ini file? For instance, I'd like to be able to set error_prepend_string to "" (which doesn't work). The only work-around I can think of is doing ini_set()'s in an auto_prepend_file, and that's not acceptable for my pu

[PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
Is anyone aware of a way to get double quotes in the php.ini file? For instance, I'd like to be able to set error_prepend_string to "" (which doesn't work). The only work-around I can think of is doing ini_set()'s in an auto_prepend_file, and that's not acceptable for my purposes. -- Evan Ne