Advertisement
Guest User

Untitled

a guest
Mar 30th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <?php
  2.  
  3. //Tömb feltöltése
  4.  
  5. $felhasznalo[0]['nev']="Roli";
  6. $felhasznalo[0]['jelszo']="kinderbueno";
  7.  
  8. $felhasznalo[1]['nev']="Kata";
  9. $felhasznalo[1]['jelszo']="kati1977";
  10.  
  11. $felhasznalo[2]['nev']="vilmos";
  12. $felhasznalo[2]['jelszo']="vilike";
  13.  
  14. $felhasznalo[3]['nev']="Jenő";
  15. $felhasznalo[3]['jelszo']="asdfgh";
  16.  
  17. $felhasznalo[4]['nev']="Detti";
  18. $felhasznalo[4]['jelszo']="tangesi";
  19.  
  20. echo '<table style="100" border="1">';
  21. echo '<caption>Regisztráltak adatai</caption>';
  22. echo '<tr>
  23. <th>Felhasználónév</th>
  24. <th>Jelszó</th>
  25. </tr>';
  26.  
  27. for ($i=0;$i<count($felhasznalo);$i++)
  28. {
  29. echo '<tr>';
  30.  
  31. echo '<td>'.$felhasznalo[$i]['nev'].'</td>';
  32. echo '<td>'.$felhasznalo[$i]['jelszo'].'</td>';
  33.  
  34. echo '</tr>';
  35. }
  36. echo '</table>';
  37.  
  38. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement