Advertisement
Guest User

Untitled

a guest
Sep 13th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8. <head>
  9. <meta charset="UTF-8">
  10. <title></title>
  11. </head>
  12. <body>
  13. <?php
  14.  
  15.  
  16. $server="localhost";
  17. $user = "root";
  18. $password = "";
  19.  
  20. $conn = new mysqli($server,$user,$password);
  21.  
  22. if($conn->connect_error)
  23. {
  24. die("konekcija neuspela".$conn->connect_error);
  25. }
  26. $sql = "CREATE DATABASE IV3";
  27.  
  28. if($conn->query($sql)===TRUE)
  29. {
  30. echo '<br>Baza je uspesno kreirana';
  31. }
  32.  
  33. else
  34. {
  35. echo 'Error!'.$conn->error;
  36. }
  37. $conn->close();
  38.  
  39. ?>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement