私は初心者ですが、メールアクティベーション機能に小さなエラーがあります。エラーはforループの行にあります。
<?php
function generateCode(){
$codelength = 20;
// The length of the activation code.
$characters = "abcdefghijklmnopqrstuvwxyz1234567890"; // All accepted characters.
$activatecode = "";
for($i=0;$i<=$codelength;$i++){
$activatecode .= substr(str_shuffle($characters),0,1);
}
return $activatecode;
}
$userActivationCode = generateCode();
?>