Gezondheid
echo ucfirst($days[date('N')]) . ' ';
echo date('d') . ' ';
echo $months[date('n')] . ' ';
echo date('Y');
?>
$module = (isset($_GET['module']) ? $_GET['module'] : 'inc_homepage');
moduleInclude($module);
?>
Meest gelezen artikelen
-
$rows = return_multiple_dbrecords('posts','*','WHERE post_publish_date < '.time().' ORDER BY post_hits DESC LIMIT 75');
if($rows)
{
foreach($rows as $row)
{
if( time() < mktime(0,0,0,date('m',$row['post_publish_date']),(date('d',$row['post_publish_date'])+335),date('Y',$row['post_publish_date'])) )
{
$i++;
if($i <=7)
{
echo '
- '.date('d - m',$row['post_publish_date']).' '.wrapIt($row['post_title'],4).' '."\n"; } } } unset($rows); } ?>
Laatste artikelen
-
$rows = return_multiple_dbrecords('posts','*','WHERE post_publish_date < '.time().' ORDER BY post_publish_date DESC LIMIT 8');
if($rows)
{
foreach($rows as $row)
{
echo '
- '.date('d - m',$row['post_publish_date']).' '.wrapIt($row['post_title'],4).' '."\n"; } unset($rows); } ?>