php date adding to the day count?

XMEGA

New member
I would like to be able to add to the day depending on the dayCount for a delivery system...for example if the price is under $25 the dayCount = 1 so when I estimate the delivery date is should be plus 1 day to the current date "today"?

$dayCount = 0;
$dateToday = date('m/d/y');

if ($dayCount = 1)
{
print ("<br></br>Estimated Delivery Date is: $dateToday");
}


I know this prints todays current date just don't kno how to add a day or two too it???

if ($dayCount = 1)
{
print ("<br></br>Estimated Delivery Date is: $dateToday");
}
 
Back
Top