mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-22 00:53:22 -05:00
11 lines
332 B
PHP
11 lines
332 B
PHP
<?php
|
|
# FileName="Connection_php_mysql.htm"
|
|
# Type="MYSQL"
|
|
# HTTP="true"
|
|
$hostname_YBDB = "enter_hostname";
|
|
$database_YBDB = "enter_schema";
|
|
$username_YBDB = "enter_username";
|
|
$password_YBDB = "enter_password";
|
|
$YBDB = mysql_pconnect($hostname_YBDB, $username_YBDB, $password_YBDB) or trigger_error(mysql_error(),E_USER_ERROR);
|
|
?>
|