本文整理汇总了PHP中client::gererDonnees方法的典型用法代码示例。如果您正苦于以下问题:PHP client::gererDonnees方法的具体用法?PHP client::gererDonnees怎么用?PHP client::gererDonnees使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类client
的用法示例。
在下文中一共展示了client::gererDonnees方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: client
$client = new client();
$affichage_inscription_ok = "none";
$affichage_inscription_erreur = "none";
// Confirmation de l'inscription
if ( ( $mon_action == "inscrire" ) && ( $anti_spam == "" ) ) {
//echo "inscription...<br>";
// Vérification de l'existence du client
if ( !$client->isMailExist( $_POST["email"] ) ) {
//echo "Le mail n'existe pas...<br>";
// Enregistrement des informations du client
$num_client = $client->gererDonnees( $_POST );
// Inscription OK
if ( $client->load( $num_client ) ) {
$affichage_inscription_ok = "block";
// Envoi du mail de confirmation d'inscription au client
if ( 1 == 1 ) {
$_to = $client->mail;
//$_to = "franck_langleron@hotmail.com";
$sujet = "adanimalerie.com - Confirmation d'inscription";
//echo "Envoi du message à " . $_to . "<br>";
$entete = "From:AD animalerie <NePasRepondre@adanimalerie.com>\n";
$entete .= "MIME-version: 1.0\n";
$entete .= "Content-type: text/html; charset= iso-8859-1\n";
示例2: trim
if ( !$client->load( $_POST["num_client"] ) ) {
//echo "Ajout...<br>";
if ( $client->isMailExist( $_POST["email"] ) ) {
$message_erreur = "Désolé, cette adresse mail existe déjà dans la base.";
$client->nom = trim( $_POST["nom"] );
$client->prenom = trim( $_POST["prenom"] );
$client->adresse = trim( $_POST["adresse"] );
$client->cp = trim( $_POST["cp"] );
$client->ville = trim( $_POST["ville"] );
$client->telephone = trim( $_POST["tel"] );
$client->mail = trim( $_POST["email"] );
$client->mdp = $_POST["mdp"];
}
else
$client->gererDonnees( $_POST );
}
else
$client->gererDonnees( $_POST );
// Redirection (s'il n'y a pas d'erreur)
if ( $message_erreur == "" ) header("Location: ./liste_client.php");
}
if ( $client->load( $num_client ) ) {
$titre_page = "Modification de " . chr(34) . stripslashes( utf8_encode( $client->nom ) ) . " " . stripslashes( utf8_encode( $client->prenom ) ) . chr(34);
$checked_actif_oui = ($client->actif == 1) ? "checked" : "";
$checked_actif_non = ($client->actif == 1) ? "" : "checked";
}
else {