十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
副文本框的内容可以看做是字符串(包含标签)。
潮南网站建设公司成都创新互联,潮南网站设计制作,有大型网站制作公司丰富经验。已为潮南超过千家提供企业网站建设服务。企业网站搭建\外贸营销网站建设要多少钱,请找那个售后服务好的潮南做网站的公司定做!
方式1:php接收到的值直接插入数据库即可,在页面上获取数据时浏览器自动翻译html标签和css样式的,不用做什么处理。
方式2:如果只想保存内容不保存标签和样式可以用php函数 strip_tags() 过滤字符串中的 HTML 标签, 然后再插入数据库,这样数据存放的少,不带样式。但是你用到副文本框的意义就没有了。
你的意思不是很明白 ,欢迎追问
编辑器都自带使用方法的。推荐使用TinyMCE这个编辑器 下面是具体案例的使用方法。获取值得时候获取id的值就可以
textarea id="contentform" rows="1" cols="1" style="width:580px;height:360px;" name="articlecontent"/textarea
!-- Load TinyMCE --
script type="text/javascript" src="tiny_mce/jquery.tinymce.js"/script
script type="text/javascript"
$().ready(function() {
$("#contentform").tinymce({
// Location of TinyMCE script
script_url : 'tiny_mce/tiny_mce.js',
// General options
theme : "advanced",
language : "zh",
width : "580",
height : "360",
add_unload_trigger : true,
plugins : "Ybrowser,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist",
// Theme options
theme_advanced_buttons1 : "undo,redo,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "forecolor,backcolor,del,ins,|,cut,copy,paste,pastetext,pasteword,|,outdent,indent,attribs,|,link,unlink,anchor,image,Ybrowser,media,cleanup,|,preview,code,fullscreen",
theme_advanced_buttons3 : "",
theme_advanced_buttons4 : "",
theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "left",
theme_advanced_statusbar_location : "bottom",
theme_advanced_resizing : false,
// Drop lists for link/image/media/template dialogs
template_external_list_url : "lists/template_list.js",
external_link_list_url : "lists/link_list.js",
external_image_list_url : "lists/image_list.js",
media_external_list_url : "lists/media_list.js",
relative_urls : false,
convert_urls :true,
remove_script_host : false
});
var formoptions = {
beforeSubmit: function() {
$("#submitbtn").val("正在处理...");
$("#submitbtn").attr("disabled","disabled");
},
beforeSerialize: function($form, options) {
tinyMCE.triggerSave();
},
success: function (msg) {
alert(msg);
if(msg == "文章添加成功!")
{
$("#sform").resetForm();
var now = new Date();
$("#pubdate").val(now.format("yyyy-mm-dd HH:MM:ss"));
}
$("#submitbtn").val("提交");
$("#submitbtn").attr("disabled","");
}
};
$("#sform").ajaxForm(formoptions);
$("#pubdate").datetimepicker({
showSecond: true,
timeFormat: 'hh:mm:ss',
hour:?php echo date('H');?,
minute:?php echo date('i');?,
second:?php echo date('s'); ?,
closeText:'完成',
currentText:'当前时间'
});
});
/script
!-- /TinyMCE --
把文本框放在表单form里面提交就可以了。直接获得文本框的值,要插入多条记录,就用循环执行你的那条数据sql语句咯
有$_GET 或者 $_POST
代码如下 :
form action='' method='post'
文本框:input type='text' name='text'
input type='submit' value='提交',name='sub'
/form
?php
if(!empty($_POST['sub'])){
echo $_POST['text'];
}
?
如果是GET 就换成GET
可以使用POST也可以使用GET方式进行传递,比如
form action="" method="post"
input type='text' name="username"
input type="submit"
/form
?php
if(isset($_POST['username']))
{
$username = $_POST['username'];
}
echo 'input type="text" value="$username"';
?
大体是这样,但是这只是个样板~~~