Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
150
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.  
  3. $nr=$_POST['numer'];
  4.  
  5. $conn=mysqli_connect('localhost','root','','sklep1');
  6. $sql="select gatunek, wystepowanie from zwierzeta where gromady_id='$nr'";
  7. $result=mysqli_query($conn,$sql);
  8. while( $lin=mysqli_fetch_row($result)){
  9. echo "Gatunek to: ".$lin[0].", wystepowanie: ".$lin[1]."<br>";
  10. }
  11. mysqli_close($conn);
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement