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); ?> Link to comment https://forums.phpfreaks.com/topic/76706-display-in-two-colours/ 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>'; Link to comment https://forums.phpfreaks.com/topic/76706-display-in-two-colours/#findComment-388316 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 Link to comment https://forums.phpfreaks.com/topic/76706-display-in-two-colours/#findComment-388317 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. Link to comment https://forums.phpfreaks.com/topic/76706-display-in-two-colours/#findComment-388320 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); ?> Link to comment https://forums.phpfreaks.com/topic/76706-display-in-two-colours/#findComment-388321 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.