You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
299 B
10 lines
299 B
<?php
|
|
# FileName="Connection_php_mysql.htm"
|
|
# Type="MYSQL"
|
|
# HTTP="true"
|
|
$hostname_conn = "localhost";
|
|
$database_conn = "dxscj";
|
|
$username_conn = "root";
|
|
$password_conn = "root";
|
|
$conn = mysql_pconnect($hostname_conn, $username_conn, $password_conn) or trigger_error(mysql_error(),E_USER_ERROR);
|
|
?>
|