I want to modify my query results with css styles.
For example my code is
<?php
$sql=mysql_query("SELECT * FROM database")
or die(mysql_error());
while($row = mysql_fetch_array( $sql )) {
Print "$row[Number].$row[Email],$row[Username]<br>";
}
?>
And i got a style with times new roman
<style type="text/css">
.Stylize {
font-family: "Times New Roman", Times, serif;
}
</style>
How can I assign the Stylize CSS class to the print $row[Number] output?