使用表单不需要在网址中传值
成都创新互联公司-专业网站定制、快速模板网站建设、高性价比那坡网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式那坡网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖那坡地区。费用合理售后完善,十余年实体公司更值得信赖。
form
action="update.php"
method="post"
name="form1"
textarea
name="end_check_content8"
wrap="physical"/textarea
input
type="hidden"
name="dia_id"
value="?=$dia_id1?"
input
type="hidden"
name="cur_page"
value="?=$cur_page?"
input
type="submit"
name="ok"
value="合格"
input
type="submit"
name="no"
value="不合格"
/form
update.php
?php
echo
'textarea的值为'.$_post['end_check_content8'].'
';
echo
'dia_id的值为'.$_post['dia_id1'].'
';
echo
'cur_page的值为'.$_post['cur_page'].'
';
if($_post['ok'])
echo
'合格'.'
';
else
echo
'不合格'.'
';
?
input name="username" type="text" value="?=$row['username']?"
$username=$_POST['username'];
update("update `table` set `username`='$username' where `id`='$id'");
这样就可以了。。。
思路:
1、构建form表单,输出文本框,用textarea/textarea吧,input/内不能换行,页面效果也不好(php、html代码嵌套写的话,直接写就行,建议用smarty,php与模板分离,比较清晰)
2、提交内容,确定用什么method(post、get)
3、获取内容,$str=$_POST['name'](name为textarea的name值)
4、$arr=split ('\r\n', $str);按换行符分割字符串为数组
5、循环执行插入语句,$arr每一层都是一条数据
如果是纯文本的编辑,你可以拆分换行符或者替换换行符:
?php
//echo $_POST['aaa'];
//$arr = explode("\r\n",$_POST['aaa']);
//print_r($arr);
echo str_replace("\r\n","",$_POST['aaa']);
?
form action="" method="post"
textarea name="aaa"/textarea
input type="submit" name="bt" value="提交" /
/form
笨方法:
用JS获取文本框里的值,然后根据这个值获取oid号,提交的时候一起发送给更新处理程序
?php if($_POST['do_hf']=='回复')//当'回复'按钮触发执行 { $bbs_hfnr=trim($_POST['textf']);//得到多行文本框 $sql="insert into table (text) values('".$bbs_hfnr."'); //SQL 连接和插入我就不写了 不知道你什么数据库 } echo "form action='' method='post'"; echo "table "; echo "trtdtextarea name='textf' class='inputtext' cols='70' rows='6'/textarea/td/tr"; echo "trtdinput type='submit' name='do_hf' value='回复'"; input type='reset' value='重置' //td/tr"; echo "/table"; echo "/form"; ?