ユーザーが開始番号と終了番号などの2つの数字を入力すると、カスタムフレームワークでフォームを作成しています。ループはそれらの数字の間のすべての数字を表示します。たとえば、ユーザーが 0300 と 0309 を入力すると、結果が表示されます
0300
0301
0302
0303
0304
0305
0306
0307
0308
0309
しかし、それは示しています
0300
301
302
303
304
305
306
307
308
309
ループに問題はありますか?
function did_ehmad_sec_submit($editForm) {
$count=0;
$start=$editForm['from_to'];
$end=$editForm['to_range'];
$desc=$editForm['description'];
for ($i=$start;$i<=$end;$i++)
{
$result = mysql_query("INSERT into did_number(did_number, description) VALUES ('$i','$desc')");
}
return $result;
}