textbook-management-system/基于PHP的教材管理系统/Connections/jc.php

10 lines
280 B
PHP

<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
$hostname_jc = "localhost";
$database_jc = "jc";
$username_jc = "root";
$password_jc = "1111";
$jc = mysql_pconnect($hostname_jc, $username_jc, $password_jc) or trigger_error(mysql_error(),E_USER_ERROR);
?>