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


PHP CFunctions::addslashes方法代码示例

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


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

示例1: explode

        $text = $texte['text'] ;
        
        $arr_pj = explode("|", $pj);
		
		$text = $text . '<p style="text-align: center;"><a href="'.URL_RACINE.'/adminpanther/src/email.php?id=' . $iEmailId . '">Visualiser cette email comme page HTML</a></p>';
		
		$text = $text . CDesinscription::insert_link();
		
		$body = CNmail::build_html_body($texte['style'], CFunctions::stripslashes($text));
		
		if(!CMail::send_mailing($liste_email, $texte['nom'], $body, $expediteur, $arr_pj)) {
			$msginfo = "Echec d'envoi d'email. Veuillez r&eacute;essayer ult&eacute;rieurement";
			break;
		}		
		
		$obj = new CTableEmail(array('id' => $iEmailId, 'expediteur'=>CFunctions::addslashes($expediteur), 'destinataire'=>CFunctions::addslashes($destinataire), 'nom'=>CFunctions::addslashes($texte['nom']), 'text'=>mysql_real_escape_string(CFunctions::addslashes($body)), 'pj'=>CFunctions::addslashes($pj), 'etat'=>1, 'date'=>date("Y-m-d H:i:s")));
		if(is_numeric($iEmailId)) $obj->update(); else $obj->insert();
		$obj->update();
		$msginfo = "Email bien envoy&eacute;<br/>";
    }
    // --- FIN envoye mail
	
	$msginfo = "utilisateur bien modifi&eacute;";
	$a = 0;
	break;
	
case 6 : // Filtre avanc&eacute;
	CSession::save($_GET);
	break;
	
case 7 : //Groupe
开发者ID:rakotobe,项目名称:Rakotobe,代码行数:31,代码来源:user.php

示例2: while

		$oRes = CBdd::select($zSql);
         while ($oPays = mysql_fetch_assoc($oRes)): ?>
         <option value="<?php echo $oPays['id'] ?>" <?php if ($pays_id!='%%%') { 
																	if($pays_id == $oPays['id'] )  echo "selected"; 
																}?>><? echo $oPays['nom'] ?></option>
         <?php endwhile; ?>
       </select>
     </p>
  </div>
  <div class="floatleft" style="margin-left:13px;">
    <p>
      <label style="width:58px" style="margin-left:-15px">Commune</label>
      <select onchange="this.form.submit();" name="filtre_commune" id="filtre_commune" style="width:145px;">
	  <option value="%%%">Tout</option>
		<?php
			$requetSql  = " SELECT DISTINCT commune.* FROM commune INNER JOIN entreprise on  commune.id_com = entreprise.commune_alias  where id_com <> 0 ".$filtre_groupe." AND pays_com LIKE '" . CFunctions::addslashes($pays_id) . "' ORDER BY nom_com ASC"; 
			print_r($requetSql); 
			$Resultat = CBdd::select($requetSql) ;
			while ($oCom = mysql_fetch_assoc($Resultat)): ?>
			<option value="<?php echo $oCom['id_com'] ?>" <?php if ($filtre_commune!='%%%') { 
				if (Cfunctions::force_encode($filtre_commune) == utf8_decode($oCom['id_com'])) echo 'selected';  
				}?>><?php $zsql = " SELECT nom_com FROM commune WHERE id_com='".$oCom['id_com']."'";
			$commune = CBdd::select_one($zsql,'nom_com');
		    echo utf8_encode($commune) ?></option>
         <?php endwhile; ?>
      </select>
    </p>
  </div>
  <div class="floatleft">
    <p>
      <label>&nbsp;&nbsp;&nbsp;Secteur</label>
开发者ID:rakotobe,项目名称:Rakotobe,代码行数:31,代码来源:contact.php

示例3: if

         <option value="<? echo $oPays['id_pays'] ?>" <? if ($pays_id!='%%%') { 
																	if($pays_id == $oPays['id_pays'] )  echo "selected"; 
																}?>><? echo $oPays['nom'] ?></option>
         <? endwhile; ?>
       </select>
     </p>
  </div>
  <div class="floatleft" style="margin-left:13px;">
    <p>
      <label style="width:58px" style="margin-left:-15px">Commune</label>
      <select onchange="this.form.submit();" name="filtre_commune" id="filtre_commune" style="width:145px;">
	  <option value="%%%">Tout</option>
		<?
			
			// Récupération commune appartenant à une entreprise
			$requetSql  = " SELECT DISTINCT commune.* FROM commune INNER JOIN entreprise on  commune.id_com = entreprise.commune_alias  INNER JOIN departement ON departement.id_dep=commune.departement INNER JOIN pays ON pays.id_pays=departement.pays WHERE id_com <> 0 ".$filtre_groupe." AND pays LIKE '" . CFunctions::addslashes($pays_id) . "' ORDER BY nom_com ASC"; 
			//echo $requetSql; 
			$Resultat = CBdd::select($requetSql) ;
			while ($oCom = mysql_fetch_assoc($Resultat)): ?>
			<option value="<? echo $oCom['id_com'] ?>" <? if ($filtre_commune!='%%%') { 
				if (Cfunctions::force_encode($filtre_commune) == utf8_decode($oCom['id_com'])) echo 'selected';  
				}?>><? $commune = CTableUtilisateur::recupnomCom('commune','nom_com', 'id_com', $oCom['id_com']);
		    echo utf8_encode($commune) ?></option>
         <? endwhile; ?>
      </select>
    </p>
  </div>
  <div class="floatleft">
    <p>
      <label>&nbsp;&nbsp;&nbsp;Secteur</label>
      <select name="filtre_secteur" id="filtre_secteur" onchange="this.form.submit();" style="width:145px;">
开发者ID:rakotobe,项目名称:Rakotobe,代码行数:31,代码来源:contact.php


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