Help for this page

Select Code to Download


  1. or download this
    while ($time_val == "08:28:00") {
    
  2. or download this
    if ($time_val eq "08:28:00") {
    
  3. or download this
    $time_val="$hour:$min:$sec";
    
  4. or download this
    $time_val=sprintf("%02d:%02d:%02d", $hour, $min ,$sec);