Advertisement
olix3001

kod

Jan 9th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. programujemy
  2.  
  3. LINKI:
  4. xampp - https://www.apachefriends.org/pl/index.html
  5. notepad++ - https://notepad-plus-plus.org
  6.  
  7.  
  8.  
  9. kod:
  10. <!DOCTYPE HTML>
  11. <html lang="pl">
  12.  
  13. <head>
  14. <meta charset="utf-8" />
  15. <title></title>
  16. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  17.  
  18. <link rel="stylesheet" href="style.css" type="text/css" />
  19.  
  20. </head>
  21. <body>
  22.  
  23. </body>
  24. </html>
  25.  
  26.  
  27.  
  28.  
  29.  
  30. connect:
  31.  
  32. <?php
  33.  
  34. $host = "localhost";
  35. $db_user = "root";
  36. $db_password = "";
  37. $db_name = "stronaklasy 5b";
  38.  
  39. ?>
  40.  
  41.  
  42.  
  43.  
  44. 1:
  45. require_once "connect.php";
  46.  
  47. $poloczenie = @new mysqli($host,$db_user,$db_password,$db_name);
  48.  
  49. if($poloczenie->connect_errno!=0)
  50. {
  51. echo "Error: ".$poloczenie->connect_errno;
  52. }
  53. else
  54. {
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement