Tuesday, 20 August 2013

How to plus the weeknumber

How to plus the weeknumber

I need have a script that plus one to the current week number if the user
has clicked a button. I have tried following:
$week_number = date("W");
if(isset($_GET['for'])){
$week_number++;
echo $week_number;
}
But unfortunately it does not work. Any suggestions? :)

No comments:

Post a Comment