エラー出力: 致命的なエラー: 30 秒の最大実行時間を超えました
そこに間違いはないと思います。なにが問題ですか?
function advancedSearchAgeOption($selectName, $selectID, $firstValue, $lastValue) {
$selectBox.='<select name="'.$selectName.'" id="'.$selectID.'">';
for ($i=$firstValue; $i=$lastValue; $i++) {
$selectBox.='<option value="'.$i.'">'.$i.'</option>';
}
$selectBox.='</select>';
return $selectBox;
}