Jump to content

Display in two colours


Dysan

Recommended Posts

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

<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);
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.