<?php
$date = date("Y-m-d");// ici ta date
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 day"); // ajouter 1 jour
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 week"); // ajouter 1 semaine
$date = strtotime(date("Y-m-d", strtotime($date)) . " +1 month"); // ajouter 1 mois
?>
dans ton cas:
<?php
$date = date("Y-m-d");// ici ta date
$date = strtotime(date("Y-m-d", strtotime($date)) . " +5 day"); // ajouter 1 jour
?>$date = date("Y-m-d");// ici ta date
$date = strtotime(date("Y-m-d", strtotime($date)) . " +5 day");
echo $date;
donne 1350165600