Guest User

Untitled

a guest
Jul 17th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.38 KB | None | 0 0
  1. <?
  2. $teachers=array("33","34","35","36","37","38","39","40","41","42");
  3. $days= array("1","2","3","4","5");
  4. $lessons=array ("1","2","3","4","5","6","7","8");
  5. $counterDays=5;
  6. $counterLessons=8;
  7. $z=0;
  8. $x=0;
  9.  
  10. foreach($teachers as $idteacher)
  11.     {
  12.                 while($z<$counterDays)
  13.                     {      
  14.                     echo$idteacher."<br/>";
  15.                     echo$days[$z]."<br/><br/>";
  16.                     $z++;
  17.                     }
  18.         $z=0;
  19.     }
  20.  
  21.  
  22.  
  23. ?>
Add Comment
Please, Sign In to add comment