i cannot multiplicate the simple string in arithmetic operation "*" adding mineutes to variable, testing with integers works fine, any idea. Thanks
$minu = intval("2");
$timestring = "00:02:42";
$futureTime = strtotime($timestring) + (60*2); // works fine adding two minutes
$futureTime = strtotime($timestring) + (60 * $minu); // doesn't work and returns same value
$formatTime = date("H:i:s", $futureTime);
echo $formatTime; /// 00:04:42 /// ok
//// NOW i concatenate and storage in DB like this value triming : "1".000412."000"
//// Operation no ejecute when (60 * $minu) with this output 00:02:42