Advertisement
Guest User

head

a guest
Jan 2nd, 2018
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Portal Akademik SMAN 8 PANGKEP</title>
  5.     <link rel="stylesheet" type="text/css" href="style.css">
  6. </head>
  7. <body>
  8. <?php
  9. session_start();
  10. $host="localhost";
  11. $username="bagitekn_sekolah";
  12. $password="databasesekolah";
  13. $database="bagitekn_sekolah";
  14. $konek=mysqli_connect($host,$username,$password,$database);
  15. if (!$konek) {
  16.     echo "Koneksi ke database Gagal!";
  17. }
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement