次のコードを使用して、10 秒後にユーザーをリダイレクトするページがあります。
<META HTTP-EQUIV="refresh" CONTENT="10;URL=login.php">
次に、PHPでエコーされるこのコードがあり、「10」(秒)が10、9、8、7として動的にカウントダウンされるようにしたいので、ユーザーはページがリダイレクトされるまでの残り秒数を確認できます。
echo "We cant find you on the system. <br/> Please return to the <b><a href='login.php'>Login</a></b> page and ensure that <br/>you have entered your details correctly.
<br>
<br>
<b>Warning</b>: You willl be redirected back to the Login Page <br> in <b>10 Seconds</b>";
同じことを達成するための最良の方法は何でしょうか?