当前位置: 首页>>代码示例>>PHP>>正文


PHP CFunctions::remove方法代码示例

本文整理汇总了PHP中CFunctions::remove方法的典型用法代码示例。如果您正苦于以下问题:PHP CFunctions::remove方法的具体用法?PHP CFunctions::remove怎么用?PHP CFunctions::remove使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CFunctions的用法示例。


在下文中一共展示了CFunctions::remove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: if

				<?php 
				}
				}
				endwhile; 
				}?>
       </select>

    </p>
  </div>
  <div class="floatleft">
    <p>
      <label>Cat&eacute;gorie</label>
      <select onchange="this.form.submit();" name="filtre_categorie" id="filtre_categorie" style="width:145px;">
        <option value="%%">Tout</option>
		<?php
		$filtre_commune_=CFunctions::remove($filtre_commune);
		$zSql  = " SELECT DISTINCT cat.* FROM cat INNER JOIN entreprise on  cat.id_cat = entreprise.categorie_ent  where id_cat <> 0 ".$filtre_groupe." AND commune_alias LIKE '" . $filtre_commune_ . "' AND secteur_cat LIKE '".$filtre_secteur."' ORDER BY nom_cat"; 
		$oRes_ = CBdd::select($zSql) ;
		while ($oCat = mysql_fetch_assoc($oRes_)): ?>
		<option value="<?php echo $oCat['id_cat'] ?>" <?php if ($filtre_categorie!='%%%') { 
																	if($filtre_categorie == $oCat['id_cat'])  echo "selected"; 
																	}?>><?php echo utf8_encode($oCat['nom_cat']) ?></option>
         <?php endwhile; ?>
       </select>	   

    </p>
  </div>  
  <div class="floatleft">
    <p>
      <label style="width:80px;">Abonnement</label>
      <select onchange="this.form.submit();" name="filtre_vignette" id="filtre_vignette" style="width:145px;">
开发者ID:rakotobe,项目名称:Rakotobe,代码行数:31,代码来源:contact.php


注:本文中的CFunctions::remove方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。