Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="styl2.css">
  6. <title>Ogłoszenia drobne</title>
  7. </head>
  8. <body>
  9. <header>
  10. <h2>Ogłoszenia drobne</h2>
  11. </header>
  12. <nav>
  13. <h2>Ogłoszeniodawcy</h2>
  14. <?php
  15. $connect = mysqli_connect('localhost','root','','ogloszenia2018-01-18e14-02');
  16. $ask = "SELECT id, imie, nazwisko, email FROM `uzytkownik` WHERE `uzytkownik`.`id` < 4;";
  17. $result = mysqli_query($connect, $ask);
  18. while ($line=mysqli_fetch_row($result))
  19. {
  20. echo '<h3>'.$line[0].' '. $line[1].' '.$line[2].'</h3>';
  21. echo '<p>'.$line[3].'</p>';
  22. echo '<p>Ogłoszenie: '.$line[4];
  23. }
  24.  
  25. mysqli_close($connect);
  26.  
  27. ?>
  28. </nav>
  29. <main>
  30. <h2>Nasze kategorie</h2>
  31. <ul>
  32. <li>Książki</li>
  33. <li>Muzyka</li>
  34. <li>Multimedia</li>
  35. </ul>
  36. <img src="ksiazki.jpg" alt="uwolnij swoją książkę"">
  37. <table border=1>
  38. <tr>
  39. <th>Ile?</th><th>Koszt</th><th >Promocja</th>
  40. </tr>
  41. <tr>
  42. <th>1-40</th><th>1,20 PLN</th><th rowspan="2">Subskrybuj newsletter upust 0,30 PLN na ogłoszenie</th>
  43. </tr>
  44. <tr>
  45. <th>41 i więcej</th><th>0,70 PLN</th>
  46. </table>
  47. </main>
  48. <footer>
  49. Portal ogłoszenia drobne opracował:
  50. </footer>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement