Skip to content
Advertisement

Comparing value submitted by user to database, redirecting based on results

I am trying to build a webpage, that allows users to enter a code (numbers and letters only). Based on if the code is a “winner”, it will redirect them to a “winner” page on my website. Otherwise, it will redirect them to a “losing” page. I’m new to this, but I’m trying to learn!

HTML:

JavaScript

PHP:

JavaScript

Advertisement

Answer

Remove onclick="window.location.href = 'results-page.html';"

and modify <input type="hidden" name="code" value="1" />

to <input type="hidden" name="questionID" value="1" />

HTML :

JavaScript

save html file to form.html

now modify phpfile.php

add header("Location: winner.html"); if code is correct

add header("Location: losing.html"); if code is incorrect

PHP :

JavaScript

create html winner.html and losing.html

winner.html : Congrats, you've entered a correct code

losing.html : Your code did not win. Please try again.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement