Bonjour,
Voila j'ai crée ca :
Voila j'ai crée ca :
Code PHP :
<?php
echo "<script type=\"text/javascript\">\n" // ici est ma fonction de verification du surnom.
. "<!--\n"
. "\n"
. "function trim(string)\n"
. "{"
. "return string.replace(/(^\s*)|(\s*$)/g,'');"
. "}\n"
. "\n"
. "function verifchamps()\n"
. "{\n"
. "surnom = trim(document.getElementById('reg_surnom').value);\n"
. "\n"
. "if (surnom.length < 3)\n"
. "{\n"
. "alert('" . _3TYPEMINSURNOM . "');\n"
. "return false;\n"
. "}\n";
et adapté ca
Code PHP :
<?php
function reg($pseudo, $surnom)
{
global $nuked;
$pseudo = htmlentities($pseudo, ENT_QUOTES);
$pseudo = verif_pseudo($pseudo);
$mail = addslashes($mail);
$mail = htmlentities($mail);
$surnom = htmlentities($surnom, ENT_QUOTES);
$surnom = verif_surnom($surnom);
}