Advertisement
Guest User

Untitled

a guest
May 27th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?php
  2.  
  3. $users = array(
  4. 0=> array(
  5. 'Login'=>'Yauheni',
  6. 'Password'=>'Y24S12',
  7. 'Email'=>'iggy.model@gmail.com'
  8. ),
  9. 1=> array(
  10. 'Login'=>'Irina',
  11. 'Password'=>'I26S10',
  12. 'Email'=>'shakhovtsevairina@gmail.com'
  13. ),
  14. 2=> array(
  15. 'Login'=>'Maria',
  16. 'Password'=>'M13S09',
  17. 'Email'=>'maria.sauchanka@gmail.com'
  18. ),
  19. 3=> array(
  20. 'Login'=>'Iggy',
  21. 'Password'=>'N01L02',
  22. 'Email'=>'iggy@gmail.com'
  23. )
  24. );
  25. echo "<table border='1'>";
  26. echo "<tr>
  27. <th style='padding:5px 10px;'>Логин</th>
  28. <th>Пароль</th>
  29. <th>Эмэил</th>
  30. </tr>";
  31. for($index=0; $index
  32. <count($users);$index++){
  33. echo "<tr>";
  34. foreach($users[$index] as $v){
  35. echo "<td style='padding:5px 10px;'>$v</td>";
  36. }
  37. echo "</tr>";
  38. }
  39. echo "</table>";?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement