groups

name language licence
PHP : Boucle ecriture dans un fichier XML PHP Other
PHP : Detection ie6 et ie7 en php PHP Other
PHP : class mail PHP Other
PHP : date en php Other Other
PHP/JS : Expressions régulière PHP Other
PHP/JS : Utilisation de la classe Ajax_upload Other Other
PHP/JS : ternaire PHP Other
PHP/MYSQL : Chaines de caractères echapper avant insertion en base PHP Other

< 1 2 3 4 5 >



language: PHP
licence: Other

PHP/JS : Expressions régulière

options: view full snippetsend to code collector
<?php

//numero
$numero_tel_fixe = "^0262([0-9]){6}$";
$numero_portable = "^069(2|3)([0-9]){6}$";

//code postale
$code_postal_reunion = "^974([0-9]){2}$";

//adresse mail
$adresse_mail = "^[a-z0-9._-].+@([a-z.-])+([.])([a-z]){2,4}$";

//date

//nom & prenom
	
(Continues...)