Advertisement
Guest User

Untitled

a guest
Feb 1st, 2015
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <ul id="programm_today" class="programm">
  2.  
  3. <?php
  4. $sizeof_programm = sizeof($programm['programm']);
  5.  
  6. if($sizeof_programm>10)
  7. {
  8. $sizeof_programm = 10;
  9. }
  10.  
  11. for($x=0;$x<$sizeof_programm;$x++)
  12. {
  13. echo '<img src="images/point_trenner.png"/>';
  14. echo "<li>";
  15. echo "<a>" . $programm['programm'][$x] . "</a>";
  16. echo "<div class='time_programm'>" . $programm['uhrzeit'][$x] . "</div>";
  17. echo "</li>";
  18. }
  19. ?>
  20.  
  21. </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement