插入不進內容。。
什么問題,
<?php
require_once 'config.php';//引入
//---------連接數據庫--------
if(!$con=mysql_connect(HOST,USERNAME,PASSWORD)){
echo '連接數據庫失敗'.mysql_errno()."<br />";
}
//----------選擇數據庫-------
if(!mysql_select_db('ceshi')){
echo '數據庫選擇失敗'.mysql_errno()."<br />";
}
//---------字符集------
if(!mysql_query('set names utf8')){
echo '字符集設置錯誤';
}
不知道為什么,,最后面的文章就是內容就是插入不進數據里面去。。
2014-11-17
您的鏈接數據庫的代碼沒有問題。后面的代碼呢?