Advertisement
Guest User

Untitled

a guest
Dec 13th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Salon Pielęgnacji</title>
  6. <link rel="stylesheet" href="salon.css">
  7. </head>
  8. <body>
  9. <div id="baner">
  10. <h1>SALON PIELĘGNACJI PSÓW I KOTÓW</h1>
  11. </div>
  12. <div id="lewy">
  13. <h3>SALON ZAPRASZA W DNIACH</h3>
  14. <ul>
  15. <li>Poniedziałek, 12:00 - 18:00</li>
  16. <li>Wtorek, 12:00 - 18:00</li>
  17. <a href="pies.jpg"><img src="pies-mini.jpg" width="120px" alt=""></a>
  18. <p>Umów się telefonicznie na wizytę lub po prostu przyjdź!</p>
  19. </div>
  20. <div id="srodkowy">
  21. <h3>PRZYPOMNIENIE O NASTĘPNEJ WIZYCIE</h3>
  22.  
  23. </div>
  24. <div id="prawy">
  25. <?php
  26. $pol= @mysqli_connect("localhost","root","","salon");
  27. $sql="SELECT nazwa,cena FROM `uslugi` ";
  28. $wynik=mysqli_query($pol,$sql);
  29. while($row=mysqli_fetch_assoc($wynik)){
  30. echo "<br/>Nazwa: ",$row['nazwa'], "<br/>Cena: ",$row['cena'],"<br/>";}
  31. mysqli_close($pol);
  32. ?>
  33. <h3>USŁUGI</h3>
  34. </div>
  35. </body>
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement