Hey Kirk,
Those are the ones I tried to use. Problem is I know just about nothing when it comes to where to put it and where to put brackets, commas, whatever....to make it work.
Lets say the "employee_bio" field is the field where I need to retain the tags--what is the precise syntax to use and where do I use it? Mucho thanks in advance.
-Andrew
<HEAD>
<TITLE>My Employees Output Page</TITLE>
<body><font face="verdana, arial" size="1"><?PHP
$db = mysql_connect("localhost", "username", "password");
mysql_select_db("employees",$db);
$result = mysql_query("SELECT * FROM employees ORDER BY employeeID",$db);
do {
print $row["employeeID"];
print (";");
print ("employee_bio");
} while ($row = mysql_fetch_array($result));
?></font>
</body>