ユーザー側から入力を受け取ってループを続行する場合、どうすれば連続ループを中断できますか
<?php
{
//first part of code
}
//endless loop, based on the first part, until an onclick method sends an ajax request?
while (1)
{
...
if ($variable_is_set_by_button_press) break;
}
{
//last part of code giving me some feedback about execution time and such
}
?>
前もって感謝します