Postingan lainnya
Tidak bisa connect mysql melalui PHP, Tanpa error message
$host = 'localhost';
$user = 'root';
$password = '*****';
$db = 'tutorial';
$link = mysqli_connect($host, $user, $password, $db) or die(mysqli_error());
OS: Linux Ubuntu php 7 LAMP
Bagaimana solusinya, thanks
0
3 Jawaban:
tambahin file .htaccess gan dan ketik kode dibawan ini
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
atau ga edit php.ini cari kode
; Production Value: Off
; http://php.net/display-errors
display_errors = Off
ubah Off jadi on gan semoga membantu
1
makasih udah ngeluangin waktu,
di tutorial sekolah koding ini gaada 2 file tersebut, susunan filenya gini auth_php > core > init.php --------------------------------------> function > db.php , user.php --------------------------------------> view > header.php , footer.php , style.... --------------------------------------> index.php , login.php , register.php
maaf, masih newbie
0
Jawaban Terpilih
[Terjawab]
<?php
$koneksi = mysqli_connect ("localhost", "root", "******", "tutorial");
if (!$koneksi)
{
die("Connection error: " . mysqli_connect_errno());
}
?>
udah berhasil pake koneksi itu, thanks
0