Civilité

AlainGb

New Member
Bonjour

Est-il possible d'ajout des champs dans le formulaire subscribe_single_fixed.php ?
Est-ce qu'une copie et adaptation des lignes déjà présentes seraient suffisantes ?

Merci de m'indiquer la façon de faire.
 

AlainGb

New Member
Merci, je suis arrivé à ajouter le champ "Civilité"
Comment vérifier que l'entrée correspond à M ou Mme, je pense qu'il faut modifier
Code:
if ( $opt1 == "" ) { $errors[] = "M or Mme in the text box"; $wrong['Civilité'] = TRUE; }

mais je ne sais pas comment.

Merci de votre aide
 

AlainGb

New Member
Bon je ne sais pas si c'est élégant mais j'ai mis ça et ça a l'air de marcher.
Code:
if ( $opt1 == "" ) { $errors[] = "M or Mme in the text box"; $wrong['opt1'] = TRUE; }
	if ( $opt1 !== "" && ( strstr( $opt1, "M" )== FALSE ) ) { $errors[] = " M or Mme possible"; $wrong['opt1'] = TRUE; }

Alain
 

AlainGb

New Member
Modification du code.
Code:
if ( $opt1 == "" ) { $errors[] = "Enter Mme or M in the text box."; $wrong['opt1'] = TRUE; }
	 elseif ( ($opt1 == "M" || $opt1 == "Mme" ) == FALSE ) { $errors[] = "Only Mme or M is possible</font></b/>"; $wrong['opt1'] = TRUE; }
Alain
 
Top