Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
<?php
define
(
'HOST'
,
'localhost'
)
;
define
(
'USER'
,
'root'
)
;
define
(
'PASS'
,
''
)
;
define
(
'DB'
,
'db_android'
)
;
$con
=
mysqli_connect
(
HOST
,
USER
,
PASS
,
DB
)
or
die
(
'Gagal'
)
;
?>