Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="pl">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF8">
- <title>Sklep LEGO Mindstorms</title>
- <link href="style.css" rel="stylesheet" type="text/css">
- </head>
- <body>
- <div id="page">
- <div id="logo">
- <img src="https://cdn.glitch.com/8bf6e9bb-2343-4faa-89c8-8e879512e4ba%2Flogo-1.png?v=1584216254772" alt="lego logo" />
- </div>
- <ul id="navigation">
- <li ><a href="index.html">Początek</a></li>
- <li><a href="#">Sprzedaż</a></li>
- <li><a href="#">Ciekawe projekty</a></li>
- <li><a href="#">O nas</a></li>
- <li><a href="kontakt.html">Kontakt</a></li>
- </ul>
- <?php
- $username = "root";
- $password = "";
- $dbname = "lekcja14";
- $servername ="127.0.0.1:3308";
- $polaczenie = new mysqli($servername, $username, $password, $dbname);
- $sql = 'SELECT * FROM wiadomosci ORDER BY data DESC';
- $wynik = $polaczenie->query($sql);
- while ($wiersz = $wynik->fetch_assoc())
- {
- echo
- '<div id="wiadomosc">'.
- "<p> <b>Imię</b>: ".$wiersz['imie']. "<b> Nazwisko</b>:". $wiersz['nazwisko'] ."<b> Email</b>: ".$wiersz['email']."</p>".
- "<p> Wiadomość. Data: ".$wiersz['data']."</p>".
- "<p>". $wiersz['wiadomosc'] ."</p>
- </div>";
- }
- $polaczenie->close();
- ?>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement