私がこのようなものを持っているとしましょう:
$count = 0;
foreach($CourseDetails as $course_line) {
print "<tr><td>{$course_line['class_code']}</td>
<td>{$course_line['class_name']}</td>
<td>{$course_line['class_unit']}</td>
<td>{$course_line['class_description']}</td>
<td>{$course_line['class_instructors']}</td>";
$count = $count + 1
if ($count = 10);
$count = 0;
// code that stops script and makes a "Continue?" button pop up on the webpage under the already outputed details
// if the client presses the "Continue?" button, allow the script to continue (jump back into the foreach loop)
}
スクリプトを停止して、「続行しますか?」というボタンを作成する方法を見つけようとしています。クライアントがボタンを押した場合、スクリプトを中断したところから続行したいと思います。PHPにはこれを可能にする機能がありますか?