我试图在填写文本框后回显该值。
<input name="cron" type="textbox" placeholder=" Please insert a valid command in cron time format" class="required" />
然后这个文本框的值需要进入我的 cron_parser 函数,并用 $next_time 回显
$cron_parser = new cron_parser($cron);
$next_time = $cron_parser->next_runtime();
基本上在填充文本框之后,我希望在屏幕上显示以下结果,并在文本框发生更改时进行更新。
<div class="alert success">
<span class="icon"></span><strong>Is this correct?</strong>
Your backup will run next at <?php echo $next_time ?>
</div>