How can I add 30 seconds to this time?
$time = date(\"m/d/Y h:i:s a\", time());
I wasn\'t sure how to do it because it is showing lots of diffe
What about using strtotime? The code would then be:
strtotime( '+30 second' );