php table background colour

Miscellaneous Forums/General Discussion/php table background colour

is it possible to change the background colour of a table
using php and if so how ? i know how to do it in html
but i am not sure how to do it using php .... stuck...

thanks !!
S/D

php outputs text to a HTML file, so if you know how to do it in HTML, you know how to do it in PHP.

basically, everything the PHP script outputs to your browser gets interpreted as HTML.

<php print "<table bgcolor="#f0f0f0">hello!</table>" /php>
see what I mean?

thanks retro.hack

S/D :)