Re: [PHP] Stuffing code into variable

2007-02-04 Thread Richard Lynch
On Sat, February 3, 2007 9:09 pm, Albert Padley wrote: > It's late and I've been at this a long time today so I throw myself > on the mercy of the list. > > I have an echo statement that I use in conjunction with a MySQL query. > > echo "\n" . $row['time'] . "\n class=\"tabletext\">" . $row['field'

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Paul Novitski
On Feb 3, 2007, at 10:04 PM, Paul Novitski wrote: By the way, if every cell in every row is class "tabletext" why have a class at all? You could simply apply the desired styles to the td element. At 2/3/2007 10:05 PM, Albert Padley wrote: As far as the CSS on the , other cells in the table

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Albert Padley
On Feb 3, 2007, at 10:04 PM, Paul Novitski wrote: On Feb 3, 2007, at 9:09 PM, Albert Padley wrote: I have an echo statement that I use in conjunction with a MySQL query. echo "\n" . $row['time'] . "\nclass=\"tabletext\">" . $row['field'] . "\n\"tabletext\">" . $row['division'] . "\n"; T

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Paul Novitski
On Feb 3, 2007, at 9:09 PM, Albert Padley wrote: I have an echo statement that I use in conjunction with a MySQL query. echo "\n" . $row['time'] . "\nclass=\"tabletext\">" . $row['field'] . "\n\"tabletext\">" . $row['division'] . "\n"; This works perfectly fine. However, I will be using the

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Albert Padley
On Feb 3, 2007, at 9:09 PM, Christopher Weldon wrote: On Feb 3, 2007, at 9:09 PM, Albert Padley wrote: It's late and I've been at this a long time today so I throw myself on the mercy of the list. I have an echo statement that I use in conjunction with a MySQL query. echo "\n" . $row[

Re: [PHP] Stuffing code into variable

2007-02-03 Thread Christopher Weldon
On Feb 3, 2007, at 9:09 PM, Albert Padley wrote: It's late and I've been at this a long time today so I throw myself on the mercy of the list. I have an echo statement that I use in conjunction with a MySQL query. echo "\n" . $row['time'] . "\nclass=\"tabletext\">" . $row['field'] . "\n\"ta