Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?php
  2. $polaczenie=mysqli_connect('localhost','root','','filmoteka');
  3. if($polaczenie!=false){
  4. $sql="Select tytul,gatunek from filmy limit 2";
  5. $wynik=mysqli_query($polaczenie,$sql);
  6. $ile_wierszy=mysqli_num_rows($wynik);
  7. if($ile_wierszy>0){
  8. for($i=0;$i<$ile_wierszy;$i++)
  9. {
  10. $wiersz=mysqli_fetch_array($wynik);
  11. {
  12. echo "Tytul : ".$wiersz['tytul']." "."Gatunek : ".$wiersz['gatunek']."<br/>";
  13. }
  14. }
  15. }
  16. }
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement