Heim  >  Artikel  >  Backend-Entwicklung  >  CI 多表单提交通不过解决思路

CI 多表单提交通不过解决思路

WBOY
WBOYOriginal
2016-06-13 11:55:50917Durchsuche

CI 多表单提交通不过
大师们帮看看这段哪错了
if (!empty($_POST['num']) ||
!empty($_POST['title']) ||
!empty($_POST['price']) ||
!empty($_POST['years']) ||
!empty($_POST['season']) ||
!empty($_POST['groups'])
{

$w = array(
foreach($_POST as $k=>$v):
  if(!empty($v)){ 
$k => $v;
}
endforeach;
)
}
就是通不过
------解决方案--------------------
这是什么写法,数组里面foreach ? 能行吗? 
------解决方案--------------------
这写法闻所未闻啊
------解决方案--------------------
为什么要多表单,一个表单里,多个搜索条件不行吗???


------解决方案--------------------

$w = array();<br />if($_POST) {<br />  $w = array_diff($_POST, array('', 0));<br />}<br />//分页参数,路由配合<br />.....

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn