Hmm.. Still no go

That code is definately a lot better looking though. It's definitely got me baffled, lol.. I really appreciate your help!!

I'm learning the way around MySQL pretty good, but not quite well enough, lol
PHP Code:
<?php
$db = mysql_connect('localhost', 'un', 'pw') or
die("Could not connect to database with error (".mysql_error().")");
$db_sel = mysql_select_db('dbname', $db) or
die("Could not select database $db_name with error (".mysql_error().")");
mysql_query("UPDATE thread SET open = 0 WHERE dateline < ".(TIMENOW - (60 * 60 * 24 * 364))." AND forumid IN (3,4,5)", $db);
?>
There is still no output below.. hmm
Code:
[root@ball vb]# php closethreads.php
[root@ball vb]#