mirror of
https://github.com/fspc/ybdb.git
synced 2025-02-28 18:43:23 -05:00
11 lines
302 B
PHP
11 lines
302 B
PHP
|
<?php
|
||
|
# FileName="Connection_php_mysql.htm"
|
||
|
# Type="MYSQL"
|
||
|
# HTTP="true"
|
||
|
$hostname_YBDB = "localhost";
|
||
|
$database_YBDB = "ybdb";
|
||
|
$username_YBDB = "admin";
|
||
|
$password_YBDB = "yblcatx";
|
||
|
$YBDB = mysql_pconnect($hostname_YBDB, $username_YBDB, $password_YBDB) or trigger_error(mysql_error(),E_USER_ERROR);
|
||
|
?>
|