Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. </head>
  5. <body>
  6. <form action="index.php" method="post">
  7.  
  8. Podaj nazwe kolumny:
  9. <input type="text" name="kolumna"><br>
  10. <input type="submit" value="dodaj kolumne">
  11.  
  12. </form>
  13.  
  14. <?php
  15. if($_SERVER["REQUEST_METHOD"]=="POST"){
  16. $kolumna=$_POST['kolumna'];
  17. echo "dodano kolumne ".$kolumna;
  18. $polaczenie=mysqli_connect('localhost','root','','filmoteka');
  19. $sql="alter table filmy add column ".$kolumna." text ";
  20. if(mysqli_query($polaczenie, $sql)){
  21. echo "<br>Dodano kolumne";
  22. }
  23. else{
  24. echo "<br> błąd".$sql;
  25. }
  26. }
  27. ?>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement