I am currently constructing a webpage which will allow the user to enter a keyword e.g. 'keyboard' and then select a level e.g. 'Easy, Expert, Intermediate' and then if they enter keyboard and select easy, the website will redirect them to keyboard_entry.html. Its just a simple redirect link once search button has been clicked.
I have managed to get the layout of the page correct but am unsure of how i would do the php coding for this. I have managed to get this far but am unsure -
if $search='help' then
echo "You have searched for search";
header('Location:help.html');
Hope your able to help