php batch add multi line text box textarea one line at a time

  • 2021-06-28 11:39:31
  • OfStack

 
$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");// Jump page, notice path  
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>  attribute </td> 
<td> 

<textarea name="a_value" id="a_value" style="width:200px;height:100px;overflow:visible;"></textarea> 
 Allow bulk addition, 1 That's ok 1 Yes, point return to change lanes </td> 
</tr> 
</table> 
<div class="sbt"><input type="submit" name="submit" value=" True   set " class="btn"> <input type="reset" name="reset" value=" heavy   Location " class="btn"></div> 
</form> 

Related articles: