HTML interesse |
|
ik heb nu dit:
<?
function wachtwoord($a)
{
$tekens = 'abcdefghijklmnopqrstuvwxyz0123456789';
$shuffle = str_shuffle($tekens);
$pass = substr($shuffle,0,$a);
return $pass;
}
$code = wachtwoord(6);
$naarwie=$email;
$titel="Login information";
$bericht="Hello $naam, <br> you registered on our site. To finish your registration, you have to activate your account.<br> Press <a href=http://thesims.downfire.com/activate.php?user=$naam&code=$code target=_blank>this</a> link.";
$headers="From:Admin<admin@thesims.be>";
mail($naarwie, $titel, $bericht, $headers);
?>
<? function wachtwoord($a) { $tekens = 'abcdefghijklmnopqrstuvwxyz0123456789'; $pass = substr($shuffle,0,$a); return $pass; } $code = wachtwoord(6); $naarwie=$email; $titel="Login information"; $bericht="Hello $naam, <br> you registered on our site. To finish your registration, you have to activate your account.<br> Press <a href=http://thesims.downfire.com/activate.php?user=$naam&code=$code target=_blank>this</a> link."; $headers="From:Admin<admin@thesims.be>"; mail($naarwie, $titel, $bericht, $headers); ?>
maar ik onvang geen mail
$email is nochtans mijn email |