weekly date change

I have a website that advertises a weekly business group meeting. The sentence says" Our next meeting is Monday 21 March 2011. Each week I have to log in and change the date. Is there some code that I can insert which will do this for me automatically? Example: Monday at 23:59 text says Monday 21st then tuesday 00:00 text says Monday 28th.
Any help would be appreciated.

Kind regards,

Clive.

Here is the code that will show text what you need:

[php]<?php

$today = time();

$w=date(‘w’,$today)-1;
if($w<0) $w=6;
$d = mktime(0,0,0,date(‘n’,$today),date(‘j’,$today)+7-$w,date(‘Y’,$today));

echo ‘Our next meeting is ‘.date(“l, j F Y”,$d).’.’;

?>[/php]

Sponsor our Newsletter | Privacy Policy | Terms of Service