[PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread Ben Edwards
I always thought quoting values in HTML had to be dome with double quotes (). however on reeding some stuff in the PHP manual the examples use single quoted. Single quotes are allot more convenient as I use double quotes generally for quoting strings. So are the two totally synonymous in HTML?

Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread tg-php
I believe HTML uses ' and interchangeably. No real difference. Well, it also depends on the HTML rendering engine too I guess. IE might do it ok but Firefox might not.. things like that. But I think as far as the spec goes, you can use both.In a lot of cases, as long as there are no

Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread Greg Donald
On Thu, 20 Jan 2005 14:47:21 +, Ben Edwards [EMAIL PROTECTED] wrote: I always thought quoting values in HTML had to be dome with double quotes (). however on reeding some stuff in the PHP manual the examples use single quoted. Single quotes are allot more convenient as I use double

Re[2]: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread Richard Davey
Hello, Thursday, January 20, 2005, 2:55:09 PM, you wrote: tpgc I believe HTML uses ' and interchangeably. No real difference. tpgc Well, it also depends on the HTML rendering engine too I guess. tpgc IE might do it ok but Firefox might not.. things like that. But tpgc I think as far as the spec

[PHP] Firefox's Web Developer Extension.. Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread tg-php
Yeah, that looks like it. Even one little feature like being able to show table cell borders and toggle that one and off can be invaluable to someone who habitually goes in and sets a border=1 for a table then has to go back and do border=0 after checking the table. The web browser knows

Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread Jochem Maas
[EMAIL PROTECTED] wrote: I believe HTML uses ' and interchangeably. No real difference. Well, it also depends on the HTML rendering engine too I guess. IE might do it ok but Firefox might not.. things like that. But I think as far as the spec goes, you can use both.In a lot of cases,

Re: [PHP] Firefox's Web Developer Extension.. Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread Jochem Maas
[EMAIL PROTECTED] wrote: Yeah, that looks like it. Even one little feature like being able to show table cell borders and toggle that one and off can be invaluable to someone who habitually goes in and sets a border=1 for a table then has to go back and do border=0 after checking the table.

Re: [PHP] Firefox's Web Developer Extension.. Re: [PHP] quoting values in HTML - is there a diference between ' and

2005-01-20 Thread tg-php
just to hammer the point home - CSS - the table killer. I still like tables. Absolute positioning be damned. Most times I'm perfectly happy letting the browser figure out where to put things without being explicit. Given, I need to do more work with CSS, but one thing I know that drives