"; print "Welcome, ".$w[full_name]; print "
Back to the previous page:
"; $sql = "select * from tbl_mediarel order by modified desc"; $result = pg_exec($conn, $sql); print ""; print "

This page is to publish all the items.

"; print ""; print ""; $numOfRows = pg_numrows ($result); for ($i = 0; $i < $numOfRows; $i++){ if ($i % 2) { $color ="#99ccff"; } else{ $color ="#cccccc"; } //while ($story = pg_fetch_array($result)) { $story = pg_fetch_array($result, $i); print ""; } print "
HeadlineLast modifiedPublishing Date
"; print $story[headline]; print ""; print date("M d, Y, H:i", $story[modified]); print ""; print date("M d, Y", $story[published]); print ""; if ($story[publish]) { print "[Unpublish] "; } else { print "[Publish] "; print "[Delete] "; } print "[Edit] "; print "[View] "; print "
"; include "../phpincludes/noindexbottomtable.inc"; ?>