Advertisement
Guest User

Untitled

a guest
Oct 22nd, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. <?php
  2. $connect=mysqli_connect('localhost','root','','baza');
  3. $question="SELECT cena FROM dania WHERE typ=1;";
  4. $howmuch=mysqli_num_rows($query);
  5. $counter=0;
  6. $query=mysqli_query($connect,$question);
  7. while($row=mysqli_fetch_array($query)){
  8. $counter=$counter+$row[0];
  9. }
  10. $counter2=$counter/$howmuch;
  11. echo round($counter2,2)."zł";
  12. ?></p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement