HTML interesse |
|
op mijn registreer pagina heb ik een scriptje staan zodat er een email wordt versuurd (als alles correct is) met de activatiecode, ik kreeg nog geen émail in mijn inbox, hoe komt dit?
hier het script
You have been registered.<br />
You will get an email with an activationcode.<br />
<?php
function activatiecode ($lengte) {
$activatie = "";
mt_srand ((double) microtime() * 1000000);
while (strlen($activatie) < $lengte) {
$kiezen = chr(mt_rand (0,255));
if (eregi("^[a-zA-Z0-9]$", $kiezen)) $activatie = $activatie.$kiezen;
}
return ($activatie);
}
$activatiecode = activatiecode(10);
mysql_query("UPDATE users SET activatiecode = '".$activatiecode."'");
$naar=$email;
$titel="Your activationcode";
$bericht="Hello, <br> A person named ".$name." registered on our site.
<br> To finish your registration you need to activate your account.
<br> Press the following link:
<br> <a href=\"http://thesims.downfire.com/acivate.php?user=$username&acivationcode=$activatiecode\">
http://thesims.downfire.com/acivate.php?user=$username&acivationcode=$activatiecode
</a>";
$headers="From: The Sims crew (Admin)";
mail($naar, $titel, $bericht, $headers);
?>
You have been registered.<br /> You will get an email with an activationcode.<br /> <?php function activatiecode ($lengte) { $activatie = ""; while (strlen($activatie) < $lengte) { if (eregi("^[a-zA-Z0-9]$", $kiezen)) $activatie = $activatie.$kiezen; } return ($activatie); } $activatiecode = activatiecode(10); mysql_query("UPDATE users SET activatiecode = '".$activatiecode."'"); $naar=$email; $titel="Your activationcode"; $bericht="Hello, <br> A person named ".$name." registered on our site. <br> To finish your registration you need to activate your account. <br> Press the following link: <br> <a href=\"http://thesims.downfire.com/acivate.php?user=$username&acivationcode=$activatiecode\"> http://thesims.downfire.com/acivate.php?user=$username&acivationcode=$activatiecode </a>"; $headers="From: The Sims crew (Admin)"; mail($naar, $titel, $bericht, $headers); ?>
ik krijg de melding dat ik geregistreerd ben, dus ik geraak in dat stuk php
EDIT: ik krijg ook geen activatiecode te zien in de database, is die functie verkeerd?
|