php 批量添加多行文本框textarea一行一个

2025-05-29 0 56

复制代码 代码如下:


$act=!empty($_GET['act']) ? trim($_GET['act']) : '';
switch($act) {
case 'adda':
$area['a_value'] = trim($_POST['a_value']);
$area['a_type']=3;
if(strpos($area['a_value'], "\\n") === false) {
//echo $area['a_value'];
//add($area);
//$DB->insert('bcrh_article_attr',$area);

}
else
{
$areanames = explode("\\n", $area['a_value']);
foreach($areanames as $areaname) {
$areaname = trim($areaname);
if(!$areaname) continue;
//echo $areaname.'|';
$area['a_value'] = $areaname;
//$DB->insert('bcrh_article_attr',$area);

}
}
header("refresh:0;url=gfxrtz.php");//跳转页面,注意路径
exit;

break;
}

复制代码 代码如下:


<form method="post" action="?act=adda" onsubmit="return Dcheck();" >
<table cellpadding="2" cellspacing="1" class="tb">
<tr>
<td class="tl"><span class="f_hid">*</span> 属性</td>
<td>

<textarea name="a_value" id="a_value" style="width:200px;height:100px;overflow:visible;"></textarea>
允许批量添加,一行一个,点回车换行</td>
</tr>
</table>
<div class="sbt"><input type="submit" name="submit" value="确 定" class="btn"> <input type="reset" name="reset" value="重 置" class="btn"></div>
</form>

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 php 批量添加多行文本框textarea一行一个 https://www.kuaiidc.com/105063.html

相关文章

发表评论
暂无评论