网页上做了个文本框 怎么让输入在里边的资料 保存到数据库
网页上做了个文本框怎么让输入在里边的资料保存到数据库,php语句怎么写?<inputname="peisongfanwei"type="text"class="textw...
网页上做了个文本框 怎么让输入在里边的资料 保存到数据库,php语句怎么写?
<input name="peisongfanwei" type="text" class="text w400" title="" value="<?php echo $output['xinjia']['peisongfanwei']; ?>" />
表是xinjia 字段 peisongfanwei
我koukou 547093571 展开
<input name="peisongfanwei" type="text" class="text w400" title="" value="<?php echo $output['xinjia']['peisongfanwei']; ?>" />
表是xinjia 字段 peisongfanwei
我koukou 547093571 展开
2个回答
展开全部
制作一个表单网页,之后再写一个服务器脚本用来接收表单内容并进行处理。
例:
form.html(表单提交的html文件)
<html>
<body>
<form action="process.php" method="post">
<input name="peisongfanwei" type="text" value="your content">
<input type="submit" value="submit">
</form>
</body>
</html>
process.php(处理表单内容的服务器脚本文件)
<?php
$a=$POST['peisongfanwei'];
/*这样就把文本框里的内容传给变量$a里面去了*/
/*连接数据库,并将变量$a里的值存到数据库里*/
?>
例:
form.html(表单提交的html文件)
<html>
<body>
<form action="process.php" method="post">
<input name="peisongfanwei" type="text" value="your content">
<input type="submit" value="submit">
</form>
</body>
</html>
process.php(处理表单内容的服务器脚本文件)
<?php
$a=$POST['peisongfanwei'];
/*这样就把文本框里的内容传给变量$a里面去了*/
/*连接数据库,并将变量$a里的值存到数据库里*/
?>
追问
我在网上下的源码 自己改呢 。前台文件加了 文本框什么的,都做好了,字段也创建了,就是保存不到数据库。
我还应该改哪个文件,是不是你说的服务器脚本? 我应该怎么搜这个脚本呢,应该搜索哪些字呢?
现在关键就是不知道哪个文件是写入数据库的
追答
看一看你下载的源码说明书,也许那上面有你需要的信息。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询