Dysan Posted November 10, 2007 Share Posted November 10, 2007 Using the following code and CSS, how do I display $record in red, and $Name in Blue? <link rel="stylesheet" type="text/css" href="Index.css" /> $result = mysql_query("SELECT * FROM Person"); echo '<table border="1">'; echo '<tr>'; echo '<th class="Heading">Person\'s Name</th>'; echo '</tr>'; $record = 1; while($row = mysql_fetch_array($result)) { echo '<tr>'; echo '<td class="Quantity">'; echo $record++ . ") " . $row['Name'] . '</td>'; echo '</tr>'; } echo '</table>'; mysql_close($con); ?> Quote Link to comment Share on other sites More sharing options...
pocobueno1388 Posted November 10, 2007 Share Posted November 10, 2007 This isn't using CSS, but you don't really need it. echo '<font color="red">'.$record++ . "</font>) <font color='blue'>" . $row['Name'] . '</font></td>'; Quote Link to comment Share on other sites More sharing options...
Dysan Posted November 10, 2007 Author Share Posted November 10, 2007 How do I do it using CSS Quote Link to comment Share on other sites More sharing options...
Aureole Posted November 10, 2007 Share Posted November 10, 2007 Use spans or p instead of font tags and give them an id or class then go read up on CSS somewhere, it's really simple. HTML <p id="somep">I'm red.</p> CSS p#somep{color:red;} ...for example. Quote Link to comment Share on other sites More sharing options...
phpQuestioner Posted November 10, 2007 Share Posted November 10, 2007 <link rel="stylesheet" type="text/css" href="Index.css" /> <style type="text/css"> .record {color:red} // add this to style sheet .name {color:blue} // add this to style sheet </style> <?php $result = mysql_query("SELECT * FROM Person"); echo '<table border="1">'; echo '<tr>'; echo '<th class="Heading">Person\'s Name</th>'; echo '</tr>'; $record = 1; while($row = mysql_fetch_array($result)) { echo '<tr>'; echo '<td class="Quantity">'; echo "<span class='record'>"; echo $record++ . ") " .</span><span class='name'> $row['Name'] . '</span></td>'; echo '</tr>'; } echo '</table>'; mysql_close($con); ?> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.