Advertisement
Guest User

123

a guest
Apr 13th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. <?php
  2.  
  3. $mysqlhost = 'localhost';
  4. $mysqluser = 'root';
  5. $mysqlpass = '';
  6.  
  7. @$mysqlcon= mysqli_connect($mysqlhost,$mysqluser,$mysqlpass) or die('Kunne ikke koble til');
  8. MySQLi_select_db($mysqlcon , 'a_database') or die('Kunne ikke koble til databasen');
  9. ?>
  10. <!DOCTYPE html>
  11. <html >
  12. <head>
  13. <meta charset="UTF-8">
  14. <title>test1</title>
  15.  
  16.  
  17. <link rel="stylesheet" href="css/style.css">
  18.  
  19.  
  20. </head>
  21.  
  22. <body>
  23.  
  24. <div class="wrapper">
  25. <div class="container">
  26. <h1>Velkommen</h1>
  27.  
  28. <form class="form">
  29. <input type="text" placeholder="Username">
  30. <input type="password" placeholder="Password">
  31. <button type="submit" id="login-button">Login</button>
  32. </form>
  33. </div>
  34.  
  35. <ul class="bg-bubbles">
  36. <li></li>
  37. <li></li>
  38. <li></li>
  39. <li></li>
  40. <li></li>
  41. <li></li>
  42. <li></li>
  43. <li></li>
  44. <li></li>
  45. <li></li>
  46. </ul>
  47. </div>
  48. <!--<script src='http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
  49.  
  50. <script src="js/index.js"></script>
  51.  
  52. -->
  53.  
  54.  
  55. </body>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement