> How can I find time stamp for example 125 next days. 

$oneDay = ( 60 * 60 * 24 );
$timeStamp = date( "U" ) + ( $oneDay * 125 );

> or 03:30 hours next?

$oneHour = ( 60 * 60 );
$timeStamp = date( "U" ) + ( $oneHour * 3.5 );

This is just one of the many different ways it can be done.

Chris


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to