Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $connection=mysqli_connect('localhost','root','','baza5');
  2. $database=mysqli_select_db($connection, 'baza5');
  3. $zapytanie=mysqli_query($connection,'SELECT id, temperatura, Opad, Cisnienie, PredkoscWiatru, Wilgotnosc FROM pogoda');
  4.  
  5. while($tabela=mysqli_fetch_array($zapytanie)){
  6. echo $tabela['id']." ".$tabela['temperatura']." ".$tabela['Opad']." ".$tabela['Cisnienie']." ".$tabela['PredkoscWiatru']." ".$tabela['Wilgotnosc']."<br/>";
  7. }
  8.  
  9. mysqli_close($connection);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement