以下是詳細的添加方法
注:我在數(shù)據(jù)庫中增加的字段一共有下面幾個:ZD_web,ZD_fax,ZD_add,ZD_company,ZD_fangsi,ZD_zhengzhuang,ZD_fuwu.
$query="select lyid,name,email,`call`,lytime,lytext,retext from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
替換成
$query="select lyid,name,email,`call`,lytime,lytext,retext,ZD_web,ZD_fax,ZD_add,ZD_company,ZD_fangsi,ZD_zhengzhuang,ZD_fuwu from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
下面這段是加在form內(nèi)的,把原form內(nèi)的替換掉:
<table width="92%" border="0" align="center" cellpadding="4" cellspacing="1"class="tableborder">
<tr class="header">
<td colspan="2" bgcolor="#F4F9FD"><strong>請您留言:</strong></td>
</tr>
<tr bgcolor="#FFFFFF">
<td width="20%">網(wǎng)站域名:</td>
<td width="722" height="23"><input name="ZD_web" type="text" id="ZD_web" />
*</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>您的姓名:</td>
<td height="23"><input name="name" type="text" id="name" />
*</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>電 話:</td>
<td height="11"><input name="call" type="text" id="call" /></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>電子郵箱:</td>
<td height="-2"><input name="email" type="text" id="email" /></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>傳 真:</td>
<td height="-1"><input name="ZD_fax" type="text" id="ZD_fax" /></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>通訊地址:</td>
<td height="0"><input name="ZD_add" type="text" id="ZD_add" /></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>公司名稱:</td>
<td height="0"><input name="ZD_company" type="text" id="ZD_company" /></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>報告接收方式:</td>
<td height="1"><input id="radio" value="傳真" type="radio" name="ZD_fangsi" />
傳真
<label>
<input id="radio2" value="電子郵件" checked="checked" type="radio" name="ZD_fangsi" />
電子郵件 </label></td>
</tr>
<tr bgcolor="#FFFFFF">
<td>網(wǎng)站的癥狀:</td>
<td height="2"><input id="ZD_zhengzhuang" value="無流量" type="checkbox" name="ZD_zhengzhuang" />
無流量
<input id="ZD_zhengzhuang" value="無排名" type="checkbox" name="ZD_zhengzhuang" />
無排名
<input id="ZD_zhengzhuang" value="無收益" type="checkbox" name="ZD_zhengzhuang" />
無收益</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>后續(xù)服務(wù): </td>
<td height="5"><input id="ZD_fuwu" value="網(wǎng)站優(yōu)化" type="checkbox" name="ZD_fuwu" />
網(wǎng)站優(yōu)化
<input id="ZD_fuwu" value="網(wǎng)站改版" type="checkbox" name="ZD_fuwu" />
網(wǎng)站改版</td>
</tr>
<tr bgcolor="#FFFFFF">
<td>其他問題或意見(*):</td>
<td height="23"><textarea name="lytext" cols="60" rows="12" id="lytext"></textarea></td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="23"> </td>
<td height="23"><input type="submit" name="Submit3" value="提交" />
<input name="bid" type="hidden" value="1" />
<input type="reset" name="Submit22" value="重置" />
<input name="enews" type="hidden" id="enews" value="AddGbook" /></td>
</tr>
</table>
三、打開e/gbook/enews/下面的gbookfun.php文件,在大約12行左右的地方找到以下代碼
$name=RepPostStr(trim($add[name]));
$email=RepPostStr($add[email]);
$call=RepPostStr($add[call]);
插入下面的代碼:
$ZD_web=RepPostStr($add[ZD_web]);
$ZD_fax=RepPostStr($add[ZD_fax]);
$ZD_add=RepPostStr($add[ZD_add]);
$ZD_company=RepPostStr($add[ZD_company]);
$ZD_fangsi=RepPostStr($add[ZD_fangsi]);
$ZD_zhengzhuang=RepPostStr($add[ZD_zhengzhuang]);
$ZD_fuwu=RepPostStr($add[ZD_fuwu]);
該文件的大約63行找到下面的代碼:
$sql=$empire->query("insert into {$dbtbpre}enewsgbook(name,email,`call`,lytime,lytext,retext,bid,ip,checked,userid,username,) values('$name','$email','$call','$lytime','$lytext','','$bid','$ip','$br[checked]','$userid','$username');");
替換為:
$sql=$empire->query("insert into {$dbtbpre}enewsgbook(name,email,`call`,lytime,lytext,retext,bid,ip,checked,userid,username,ZD_web,ZD_fax,ZD_add,ZD_company,ZD_fangsi,ZD_zhengzhuang,ZD_fuwu) values('$name','$email','$call','$lytime','$lytext','','$bid','$ip','$br[checked]','$userid','$username','$ZD_web','$ZD_fax','$ZD_add','$ZD_company','$ZD_fangsi','$ZD_zhengzhuang','$ZD_fuwu');");
四、打開e/data/template下面的gbooktemp.txt文件,約51號找下面的代碼:
$query="select lyid,name,email,`call`,lytime,lytext,retext from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
替換成:
$query="select lyid,name,email,`call`,lytime,ZD_web,ZD_fax,ZD_add,ZD_company,ZD_fangsi,ZD_zhengzhuang,ZD_fuwu,lytext,retext from {$dbtbpre}enewsgbook where bid='$bid' and checked=0";
五、打開e/class下面的functions.php文件,約2934號的位置找下面代碼:
$listtemp_center=str_replace("[!--lyid--]","<?=$r[lyid]?>",$listtemp_center);
插入下面的代碼:
$listtemp_center=str_replace("[!--ZD_web--]","<?=$r[ZD_web]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_fax--]","<?=$r[ZD_fax]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_add--]","<?=$r[ZD_add]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_company--]","<?=$r[ZD_company]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_fangsi--]","<?=$r[ZD_fangsi]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_zhengzhuang--]","<?=$r[ZD_zhengzhuang]?>",$listtemp_center);
$listtemp_center=str_replace("[!--ZD_fuwu--]","<?=$r[ZD_fuwu]?>",$listtemp_center);
六、打開e/class下面的functions.php文件,約2108號的位置找下面代碼:
$listtemp=str_replace("[!--retext--]",nl2br($r['retext']),$listtemp);//回復(fù)
插入下面的代碼:
$listtemp=str_replace("[!--ZD_web--]",format_datetime($r['ZD_web'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_fax--]",format_datetime($r['ZD_fax'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_add--]",format_datetime($r['ZD_add'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_company--]",format_datetime($r['ZD_company'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_fangsi--]",format_datetime($r['ZD_fangsi'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_zhengzhuang--]",format_datetime($r['ZD_zhengzhuang'],$formatdate),$listtemp);
$listtemp=str_replace("[!--ZD_fuwu--]",format_datetime($r['ZD_fuwu'],$formatdate),$listtemp);
好了,到這里前臺的工作就完成了,把這些文件保存后上傳到原路徑去,在/e/tool/gbook/?bid=1這個頁面提交就可以把數(shù)據(jù)寫入數(shù)據(jù)庫了,最后一步就是后臺查看留言的頁面,如果后面不改的話,提交的東西在后臺看不全的喲,呵呵
七、打開e/admin/tool/下面的gbook.php文件,把form內(nèi)的代碼替換成下面的代碼:
<?
while($r=$empire->fetch($sql))
{
$br=$empire->fetch1("select bname from {$dbtbpre}enewsgbookclass where bid='$r[bid]'");
//審核
$checked="";
if($r[checked])
{
$checked=" title='未審核' style='background:#99C4E3'";
}
$username="游客";
if($r['userid'])
{
$username="<a href='../member/AddMember.php?enews=EditMember&userid=".$r['userid']."' target=_blank>".$r['username']."</a>";
}
?>
<table width="700" border="0" align="center" cellpadding="3" cellspacing="1" class=tableborder>
<tr class=header>
<td width="55%" height="23">發(fā)布者:
<span style="word-break:break-all">
<?=$r[ZD_company]?>
</span> (<span style="word-break:break-all">
<?=$r[name]?>
</span>)</td>
<td width="45%">發(fā)布時間:
<?=$r[lytime]?>
(IP:
<?=$r[ip]?>) </td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="23" colspan="2"> <table border=0 width=100% cellspacing=1 cellpadding=10 bgcolor='#cccccc'>
<tr>
<td width='100%' bgcolor='#FFFFFF' style='word-break:break-all'><strong>網(wǎng)站域名:</strong>
<?=$r[ZD_web]?>
<br>
<strong>通訊地址:</strong>
<?=$r[ZD_add]?>
<br>
<strong>報告接收方式:</strong>
<?=$r[ZD_fangsi]?>
<br>
<strong>網(wǎng)站的癥狀:</strong>
<?=$r[ZD_zhengzhuang]?>
<br>
<strong>后續(xù)服務(wù):</strong>
<?=$r[ZD_fuwu]?>
<br>
<strong>其他問題或意見(*):</strong><?=$r[lytext]?></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><img src="../../data/images/regb.gif" width="18" height="18"><strong><font color="#FF0000">回復(fù):</font></strong>
<?=nl2br($r[retext])?>
</td>
</tr>
</table>
</td>
</tr>
<tr bgcolor="#FFFFFF">
<td height="23" colspan="2"><div align="right">
<table width="100%" border="0" cellspacing="1" cellpadding="3">
<tr>
<td width="65%"><strong>郵箱:<span style="word-break:break-all">
<?=$r[email]?>
</span>,電話:<span style="word-break:break-all">
<?=$r[call]?>
傳 真:
<?=$r[ZD_fax]?>
</span></strong></td>
<td width="35%"> <div align="left"><strong>操作:</strong>[<a href="#ecms" onClick="window.open('ReGbook.php?lyid=<?=$r[lyid]?>&bid=<?=$bid?>','','width=600,height=380,scrollbars=yes');">回復(fù)/修改回復(fù)</a>] [<a href="gbook.php?enews=DelGbook&lyid=<?=$r[lyid]?>&bid=<?=$bid?>" onClick="return confirm('確認要刪除?');">刪除</a>]
<input name="lyid[]" type="checkbox" id="lyid[]" value="<?=$r[lyid]?>"<?=$checked?>>
</div></td>
</tr>
</table>
<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td><div align="center">所屬留言分類:<a href="gbook.php?bid=<?=$r[bid]?>"><?=$br[bname]?></a></div></td>
</tr>
</table>
</div></td>
</tr>
</table>
<br>
<?
}
?>
<table width="700" border="0" align="center" cellpadding="3" cellspacing="1">
<tr>
<td>分頁:
<?=$returnpage?>
<input type="submit" name="Submit" value="審核留言" onClick="document.thisform.enews.value='CheckGbook_all';">
<input type="submit" name="Submit2" value="刪除留言" onClick="document.thisform.enews.value='DelGbook_all';">
<input name="enews" type="hidden" id="enews" value="DelGbook_all">
<input name="bid" type="hidden" id="bid" value="<?=$bid?>"></td>
</tr>
</table>
好了,把這個文件保存,上傳就OK了,