Hi again guys,
I am getting information from a table that I would dearly love to format using my css styles in an external css sheet. Now I am calling the sheet in the header correctly, tested that to make sure.
Here is the code I am using. This generates the text, but not formatted according to my css style sheet.
echo "<div align=\"left\">";
while($row=mysql_fetch_array($result))
{
echo "<p class=\"index_page_big\">";
echo $row['manufacturer']." ".$row['make']." ".$row['model']." ".$row['variant'];
echo "</p>";
}
mysql_close($connect);
?>
</div>
What I would ideally like to do, is have lines 4,5,6 all one one line. But can just as well live with the three lines if just for the sake of readability! Nice to have short precise code, but then also good to be able to read what has been done easily!