javascript - Is this html code OK for auto submitting (if there is a separate page needs to be appeared after submission) -
this basic think 1 of few ways create auto submission using html.
<meta charset=utf-8" http-equiv="refresh" content="120;url=http://localhost/quiz/grade.php">
is okay if need new page after submission.... typing large java-script codes. (i'm creating quiz page website , need show results after 2 minutes in new page)?
it's 1 way redirect page. it's fine use it.
side note
if ever auto-include head content every page, code redirect every page (i think it's not want, keep in mind that).
typo in <meta>
:
<meta charset=utf-8">
must
<meta charset="utf-8">
Comments
Post a Comment