Advertisement
Teffrid

Bucle While 2

Jan 22nd, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.17 KB | None | 0 0
  1. <?php
  2.    $cond=true;
  3.    $i=0;
  4.    $result="";
  5.    while($cond){
  6.     if($i===5){
  7.       $cond=false;
  8.     }
  9.     $result.="numero:$i,";
  10.    }
  11.     echo $result;
  12.    ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement