where i have the display html part, and you can open the tags on both because it will only execute one of the options so it won't duplicate any of the tags
so you could do
PHP Code:
<?php
print "<a href=\"thispage.php?spell=fire\">Fire</a>";
print "<a href=\"thispage.php?spell=water\">Water</a>";
//repeat as needed
if ($spell == "fire") {
//Do fire HTML, ex
print "<html><body>This is fire stuff</body></html>";
} elseif ($spell == "water") {
//Do water HTML, ex
print "<html><body>This is water stuff</body></html>";
}
this will make a basic page with links that will stay at the top and other info that will only appear if the spell variable equals something
edit: finished editing