Tambahkan 2 hari ke tanggal saat ini di PHP
<?php
$result = date('d.m.Y', strtotime('+2 day', time()));
echo $result;
?>
Gowri Shankar Balasubramaniam
<?php
$result = date('d.m.Y', strtotime('+2 day', time()));
echo $result;
?>