Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta charset="Utf-8">
- <style>
- *{
- background-color: black;
- color: green;
- text-align: center;
- }
- </style>
- </head>
- <body>
- <form action="" method="POST">
- <input type="number" name="id"><br>
- <input type="text" name="imie"><br>
- <input type="text" name="nazwisko"><br>
- <input type="submit" name="wstaw">
- </form>
- <?php
- $conn = mysqli_connect('localhost', 'root', '', 'niepuste') or die ('cos nie chyta');
- if(isset($_POST["wstaw"])){
- $id = $_POST["id"];
- $imie = $_POST["imie"];
- $nazwisko = $_POST["nazwisko"];
- }
- if(!empty($id) && !empty($imie) && !empty($nazwisko)){
- $insert = mysqli_query($conn, "INSERT INTO niepuste VALUES (' $id ', ' $imie ', ' $nazwisko ')");
- echo "<h1>"."Pomyślnie wpisano dane do bazy!!!!"."</h1>";
- }
- else{
- echo "Wpisałeś coś niepoprawnie";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement