亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

PHP development simple post bar connection database function

Public configuration file config.php

<?php
	header("Content-type:text/html;charset=utf-8");
	define('HOST','127.0.0.1');
	define('USERNAME','root');
	define('PASSWORD','root');
?>

Program explanation:

  • Settings Determine the encoding format of the file

  • Define the host name, database name, and password as constants

Public connection database file connect.php

<?php 
require_once('config.php');
$conn = mysqli_connect(HOST,USERNAME,PASSWORD);//數(shù)據(jù)庫帳號密碼為安裝數(shù)據(jù)庫時設置
if(mysqli_errno($conn)){
echo mysqli_errno($conn);
exit;
}
mysqli_select_db($conn,"tieba");
mysqli_set_charset($conn,'utf8'); 
?>

Program explanation:

  • ##Introduced the configuration file

  • Connect to the database, select the tieba database, and set the encoding format to utf8

In subsequent projects, wherever you want to connect to the database, you only need to introduce the connect.php file.

Continuing Learning
||
<?php header("Content-type:text/html;charset=utf-8"); define('HOST','127.0.0.1'); define('USERNAME','root'); define('PASSWORD','root'); ?>
submitReset Code