Countdown timer-php+mysql+js

前端 未结 4 1408
忘掉有多难
忘掉有多难 2021-01-27 17:22

I am working on online examination. In which the examination duration will fetch by mysql(in minutes). I want to show the countdown time on the top of the page.

current

4条回答
  •  借酒劲吻你
    2021-01-27 17:44

    You can store the current value in a cookie using the form submit or page beforeunload events. Then when a new page loads, get the remaining time and keep counting down. This also allows for some network latency.

    Note that the user may be able to access and modify the value of the cookie.

提交回复
热议问题