Changing color without CSS [SOLVED]

Is there a way i can change the, font color, information in the code below without using css? Thanks

<?php $username="nuffraci_nuff"; $password="mypassword"; $database="nuffraci_totals"; mysql_connect(localhost,$username,$password); mysql_select_db($database) or die( "Unable to select database"); $result=mysql_query('SELECT * FROM `z` WHERE `id`='.intval($_GET['id'])); if($row=mysql_fetch_assoc($result)) echo '
Wins Avg. Starts Avg. Finishs Poles Total Top 5s Total Top 10s Races Attended Driver
'.number_format($row['Wins'],1).' '.number_format($row['avgstart'],1).' '.number_format($row['avgfinish'],1).' '.number_format($row['Poles'],1).' '.number_format($row['totaltop5'],1).' '.number_format($row['Totaltop10'],1).' '.number_format($row['Racesattended'],1).' '.htmlentities($row['Drivers']).'
'; else echo 'entry number '.intval($_GET['id']).' is not existing'; ?>

why not using css?

style=“color:#FF0000

supported by all browsers since IE3/NS4 !!!

where do i put that in the code?

e.g.:[code]

Races Attended Driver '.number_format($row['Wins'],1).' '.number_format($row['avgstart'],1).' [/code]

Thanks Q

Sponsor our Newsletter | Privacy Policy | Terms of Service