Advertisement
mnaufaldillah

config tugas php

Dec 6th, 2021
791
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. <?php
  2. $server = 'localhost';
  3. $user = 'root';
  4. $password = '';
  5. $database = 'pendaftaran_siswa';
  6.  
  7. $db_connection = mysqli_connect($server, $user, $password, $database);
  8.  
  9. if ( !$db_connection ) {
  10.     die('Gagal terhubung dengan database: ' . mysqli_connect_error () );
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement