Thanks, Duncan!
I had tried what you suggested but all my dates came out as "01-18-2038" (as far as the UNIX timestamp goes, I believe).
I did get it to work by using two separate queries like this:
$db = mysql_pconnect("localhost", "root");
mysql_select_db("marvster_links");
$result = mysql_query("select linksr_id, code_a, code_b, title, url, description from links_resources order by title");
$result2 = mysql_query("select unix_timestamp(updated) from links_resources order by title");
$numrows = mysql_num_rows($result);
for ($row=1; $row<$numrows; $row++)
{
echo "<table border=1><tr>";
$linkurl = mysql_result($result,$row,"url");
echo "<td width=250 bgcolor='#CCCCCC'><font face='Verdana, Arial, Helvetica, sans-serif' size='1'>"; printf("<a href='$linkurl'>%s</a>", mysql_result($result,$row,"title")); echo "</td>";
echo "<td width=30><font face='Verdana, Arial, Helvetica, sans-serif' size='1'>"; printf(mysql_result($result,$row,"linksr_id")); echo "</td>";
echo "<td width=105><font face='Verdana, Arial, Helvetica, sans-serif' size='1'>"; printf(mysql_result($result,$row,"code_a")); echo "</td>";
echo "<td width=105><font face='Verdana, Arial, Helvetica, sans-serif' size='1'>"; printf(mysql_result($result,$row,"code_b")); echo "</td>";
$ts = mysql_result($result2, $row);
echo "<td width=130><font face='Verdana, Arial, Helvetica, sans-serif' size='1'>"; echo date("m-d-Y g:i A", $ts); echo "</td>";
More....
It's of kludgey, but it seems solid. The problem is, when I try to use "unix_timestamp(updated)" in the same as everything else I can no longer call the "updated" field using:
$mysql_result($result,$row,"updated");
Strange but true. I'd still rather not have to use two queries, so any advice is much appreciated.
Marv