config.php頁面
<?php
//防止產生亂碼
header("content-type:text/html;charset=utf-8");
//定義常量
define('host','localhost');
define('username','root');
define('password','');
?>
connect.php頁面
<?php
//匯入config.php
require_once('config.php');
//連庫,如果連線失敗列印錯誤資訊
if(!( $con=mysql_connect(host,username,password)))
//選庫
if(!(mysql_select_db('info')))
//字符集
if(!(mysql_query('set names utf8')))
?>
article.php頁面
後台管理系統
發布文章
管理文章
article.add.handle.php
<?php
require_once('connect.php');
//把傳遞過來的資訊入庫,在入庫前對資訊進行校驗
// print_r($_post);
//isset判斷變數是否存在
if(isset($_post['title'])&&(!empty($_post['title'])))
$title=$_post['title'];
$author=$_post['author'];
$description=$_post['description'];
$content=$_post['content'];
$dateline=time();
$insertsql="insert into article(title,author,description,content,dateline)
values('$title','$author','$description','$content','$dateline')";
//echo $insertsql;
// echo "標題不能為空";
if(mysql_query($insertsql))else
?>
資料庫連線
第一,設定允許遠端連線,允許sql server驗證 第二,建立登陸帳戶並授權 第三,註冊sql server資料庫 c windows microsoft.net framework v2.0.50727 下執行 aspnet regsql 指令 data server sqlexpress in...
資料庫連線
php host localhost host name db user root mysql username db password root mysql password db name table database name connect to server and select data...
資料庫連線
1.c 連線連線access 程式 using system.data using system.data.oledb string strconnection provider microsoft.jet.oledb.4.0 strconnection data source c begaspne...