Calculation a Date

Hi all, I need to work out a date of the next Monday. The code is part of a rental site so if for example the rental ends on a Friday, the return date would be Monday. However the following peice of code isn’t giving me a Monday?

$return_date = $start.'+ '.$_SESSION['HIRE_PERIOD'].' day next monday';

<?php
$last_rental_date = mktime(null, null, null, 7, 29, 2011);
$following_monday_after_last_rental_date = strtotime('next monday', $last_rental_date);
echo date('r', $following_monday_after_last_rental_date);

Hey man, that’s brilliant, sorted me out perfectly. Thanks for your time as always :slight_smile:

Off Topic:

Heck of a variable name there Anthony :stuck_out_tongue_winking_eye: