php 简易留言板 留言内容无法写入数据库
网站向增加一个简单的留言功能但是测试的新增留言内容无法写入数据库请大侠们帮忙看一下bbs页面部分代码-----------------------------------...
网站向增加一个简单的留言功能 但是测试的新增留言内容 无法写入数据库 请大侠们帮忙看一下
bbs页面部分代码---------------------------------------------------------------------------
<table width="720" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" bgcolor="#EE2C2C"><div align="center" class="style1">留言板</div></td>
</tr>
<tr>
<td height="253" bgcolor="#666666">
<form name="form1" enctype="multipart/form-data" method="post" action="savebbs.php">
<table width="720" border="0" cellpadding="0" cellspacing="1">
<script language="javascript">
function chkinput(form)
{
if(form.title.value=="")
{
alert("请输入留言标题!");
form.title.select();
return(false);
}
return(true);
}
</script>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言标题:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="title" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言人姓名:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="name" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言人电话:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="tel" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td height="80" bgcolor="#FFFFFF"><div align="center">留言内容:</div></td>
<input type="hidden" name="question" id="question">
<td height="40" bgcolor="#FFFFFF">
<iframe ID=Editor src=../jshtml/ewebeditor.htm?id=content&style=coolblue frameborder=0 scrolling=no width=550 height=350></iframe> </td>
</tr>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF"><div align="center"><input name="submit" type="submit" class="buttoncss" id="submit" value="添加">
<input type="reset" value="重写" class="buttoncss"></div></td>
</tr>
</table>
savebbs 页面部分代码---------------------------------------------------------------------------
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<?php
include("conn/conndb.php");
$title=$_POST[title];
$name=$_POST[name];
$tel=$_POST[tel];
$question=$_POST[question];
$question=str_replace("[url=]\\\"","",$question[/url]);
mysql_query("insert into tb_bbs(title,name,tel,question,input_date)values('$title','$name','$tel','$question',now()",$conn);
echo "<script>alert('提问已提交!');window.location.href='bbs.php';</script>";
?> 展开
bbs页面部分代码---------------------------------------------------------------------------
<table width="720" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="20" bgcolor="#EE2C2C"><div align="center" class="style1">留言板</div></td>
</tr>
<tr>
<td height="253" bgcolor="#666666">
<form name="form1" enctype="multipart/form-data" method="post" action="savebbs.php">
<table width="720" border="0" cellpadding="0" cellspacing="1">
<script language="javascript">
function chkinput(form)
{
if(form.title.value=="")
{
alert("请输入留言标题!");
form.title.select();
return(false);
}
return(true);
}
</script>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言标题:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="title" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言人姓名:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="name" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td width="200" height="25" bgcolor="#FFFFFF"><div align="center">留言人电话:</div></td>
<td width="618" bgcolor="#FFFFFF"><div align="left"><input type="text" name="tel" size="25" class="inputcss"></div></td>
</tr>
<tr>
<td height="80" bgcolor="#FFFFFF"><div align="center">留言内容:</div></td>
<input type="hidden" name="question" id="question">
<td height="40" bgcolor="#FFFFFF">
<iframe ID=Editor src=../jshtml/ewebeditor.htm?id=content&style=coolblue frameborder=0 scrolling=no width=550 height=350></iframe> </td>
</tr>
<tr>
<td height="25" colspan="2" bgcolor="#FFFFFF"><div align="center"><input name="submit" type="submit" class="buttoncss" id="submit" value="添加">
<input type="reset" value="重写" class="buttoncss"></div></td>
</tr>
</table>
savebbs 页面部分代码---------------------------------------------------------------------------
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<?php
include("conn/conndb.php");
$title=$_POST[title];
$name=$_POST[name];
$tel=$_POST[tel];
$question=$_POST[question];
$question=str_replace("[url=]\\\"","",$question[/url]);
mysql_query("insert into tb_bbs(title,name,tel,question,input_date)values('$title','$name','$tel','$question',now()",$conn);
echo "<script>alert('提问已提交!');window.location.href='bbs.php';</script>";
?> 展开
网易云信
2023-12-06 广告
2023-12-06 广告
很高兴能回答您的问题。以下是一段针对“一对一消息组件”的描述,字数在200字左右:该组件支持用户之间的私密交流,让沟通更加直接和高效。通过它,您可以向特定对象发送消息,并实时查看消息状态,包括对方是否已读或未读。同时,该组件还支持富文本消息...
点击进入详情页
本回答由网易云信提供
展开全部
$name=$_POST[name];
$tel=$_POST[tel];
错啦错啦
加引号
$name=$_POST["name"];
$tel=$_POST["tel"];
$tel=$_POST[tel];
错啦错啦
加引号
$name=$_POST["name"];
$tel=$_POST["tel"];
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
数据库在查询前是否已建立了链接?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的表单有开始 但是怎么没有结束呢? 加个 </form> 在提交表单后面试试吧,祝你成功!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询