Wow, I can't believe I missed the $ in mysql_query($selstr);
but it didn't solve the problem.
I don't know if this helps at all, but when I do this:
$selstr = "select date_format(lastupdate, '%W %M %e, %Y %h:%i') FROM stats WHERE id='$id'";
$result = mysql_query($selstr);
echo $result;
I get a "Resource ID#3" error.
And if I do this:
$selstr = "select date_format(lastupdate, '%W %M %e, %Y %h:%i') FROM stats WHERE id='$id'";
$result = mysql_query($selstr);
$lastupdate = mysql_fetch_row($result);
echo $lastupdate;
I get an "Array" error.
Any ideas what I'm doing wrong??
JeNNiDeS