Re: [PHP] echo problem NEW

2002-01-09 Thread Henning Sprang
Hy, universal2001 wrote: Hi again! Thanks for the reply! I still have another question: so I tired to use (echo) like this: echo table border=0 cellpadding=0 cellspacing=0 width=639 tr tdimg src=img_heading/spacer.gif width=25 height=1 border=0/td /tr tr td

Re: [PHP] echo problem NEW

2002-01-09 Thread Nicolas Costes
Hellorghh !!! You'd better do like this : echo table border='0' cellpadding='0' cellspacing='0' width='639' Le Mercredi 9 Janvier 2002 13:05, Henning Sprang a écrit : Hy, universal2001 wrote: Hi again! Thanks for the reply! I still have another question: so I tired to use

Re: [PHP] echo problem NEW

2002-01-09 Thread Henning Sprang
Nicolas Costes wrote: Hellorghh !!! You'd better do like this : echo table border='0' cellpadding='0' cellspacing='0' width='639' just another one - but i am too out of practice with html standarts to know if this is compliant ( a browser showing a result doesn't neccessary mean it's

Re: [PHP] echo problem NEW

2002-01-09 Thread Nicolas Costes
Yes, you're right !!! some browsers like IE will accept even blah blah=0, blah blah='0', blah blah=0, and some like Opera will only understand : IE SuxWithTooEasySyntax=1 ;-)) Le Mercredi 9 Janvier 2002 14:17, Henning Sprang a écrit : Nicolas Costes wrote: -- ( * Nicolas Costes,

Re: [PHP] echo problem NEW

2002-01-09 Thread Bas van Rooijen
Hello, In addition to Henning Sprang's fine solutions, you can also do the following (given you use PHP 4); ? $xmp_width = 5; $xmp_tdcolor = #FF; $xmp_text = Some text; echo EOF TABLE WIDTH={$xmp_width} TRTD COLOR={$xmp_tdcolor}$xmp_text/TD/TR /TABLE EOF; ? Note that

Re: [PHP] echo problem NEW

2002-01-09 Thread Paul Burney
on 1/9/02 8:17 AM, Henning Sprang at [EMAIL PROTECTED] appended the following bits to my mbox: just another one - but i am too out of practice with html standarts to know if this is compliant ( a browser showing a result doesn't neccessary mean it's standarts compliant!) FYI: By default,

[PHP] echo problem NEW

2002-01-08 Thread universal2001
Hi again! Thanks for the reply! I still have another question: I want to create a recycleable code by printing a set of html code which I copied and paste from my html edittor. however because there are lots of quotation marks on the html code it result an error page. here is part of the

Re: [PHP] echo problem NEW

2002-01-08 Thread Steven Cayford
On 2002.01.09 02:00:55 -0600 universal2001 wrote: so I tired to use (echo) like this: echo table border=0 cellpadding=0 cellspacing=0 width=639 tr tdimg src=img_heading/spacer.gif width=25 height=1 border=0/td /tr tr td colspan=11img name=index_r1_c1

FW: [PHP] echo problem NEW

2002-01-08 Thread Necro
PROTECTED]] Sent: Wednesday, 9 January 2002 7:01 PM To: [EMAIL PROTECTED] Subject: [PHP] echo problem NEW Importance: High Hi again! Thanks for the reply! I still have another question: I want to create a recycleable code by printing a set of html code which I copied and paste from my html edittor

Re: [PHP] echo problem NEW

2002-01-08 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Steven Cayford) wrote: You can tell php to treat quotes as text by escaping them: putting a \ in front of them like this: echo table border=\0\; Or you could drop out of php mode entirely to do your html like this: ?php ...php stuff

Re: [PHP] echo problem NEW

2002-01-08 Thread Steve Maroney
I simply use single quotes for html and double quotes for PHP. echo table border='1' cellpadding='0' cellspacing='0' width='620'; works for me. Steve On Tue, 8 Jan 2002, Steven Cayford wrote: On 2002.01.09 02:00:55 -0600 universal2001 wrote: so I tired to use (echo) like this: