Hi! I need to apply a CSS style sheet to the collum part of this table:
if ($r = mysql_query ($view)) {
while ($row = mysql_fetch_array ($r)) {
print "
<table border=1>
<tr>
<th>{$row['Type']}</th>
<th>{$row['Date']}</th>
<th>{$row['Title']}</th>
<th>{$row['Passage']}</th>
<th>{$row['File']}</th>
</tr>
";
}
} else {
print "did not run";
}
Any ideas on accomplishing this?
TIA,
Zak