PHP expert |
|
heb een functie createcode (zal vast wel bekend voorkomen hier )
<?php
function createcode($len)
{
$nps = "";
mt_srand ((double) microtime() * 1000000);
while (strlen($nps)<$len) {
$c = chr(mt_rand (0,255));
if (eregi("^[a-z0-9]$", $c)) $nps = $nps.$c;
}
return ($nps);
}
?>
<?php function createcode($len) { $nps = ""; if (eregi("^[a-z0-9]$", $c)) $nps = $nps.$c; } return ($nps); } ?>
en die staat in config.php, in login.php roep ik aan defineer die naar $hash dmv dit stukje:
$hash = createcode(32);
alleen ik krijg nu in login.php onderstaande error
Citaat: Fatal error: Cannot redeclare createcode() (previously declared in /usr/export/www/vhosts/funnetwork/hosting/ultimatum/members/config.php:20) in /usr/export/www/vhosts/funnetwork/hosting/ultimatum/members/config.php on line 20
wat is mijn fout, want lukt niet om het op te losse
|