abdurahman_argoebie

chat

Sep 24th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.00 KB | None | 0 0
  1. "slide-out-chat-'.$row->user_ID.'"
  2. foreach($query as $row_check) {
  3.  
  4.             if($row_check->online == 1) {
  5.                 $list_online = "<span style='color: #05e676;' class='secondary-content medium-small'>online</span>";
  6.             } else {
  7.                 if($row_check->days == 0) {
  8.  
  9.                     if($row_check->hours == 0) {
  10.                         $list_time = "<span style='font-size:10px!important; color:red;' class='secondary-content medium-small'>".$row_check->minutes." minutes</span>";
  11.                     } else {
  12.                         if($row_check->minutes == 0) {
  13.                             $list_time = "<span style='font-size:10px!important;color:red;' class='secondary-content medium-small'>".$row_check->hours." hours</span>";
  14.                         } else {
  15.                             $list_time = "<span style='font-size:10px!important;color:red;' class='secondary-content medium-small'>".$row_check->hours.' hours : ' .$row_check->minutes." minutes</span>";
  16.                         }
  17.                     }
  18.    
  19.                 } else {
  20.                     $list_time = "<span style='font-size:10px!important' class='secondary-content medium-small'>".$row_check->days."</span>";
  21.                 }
  22.             }
  23.            
  24.         }
Add Comment
Please, Sign In to add comment