so you want it all contained in one php file but looks like a different page?
PHP Code:
if (!$spell) { // this means if spell is not defined in the url display the links
print "<a href=\"thispage.php?spell=fire\">Fire</a>";
print "<a href=\"thispage.php?spell=water\">Water</a>";
}
if ($spell == "fire") {
//Display HTML for fire spell
} elseif ($spell == "water") {
//Display HTML for water spell
}
this will always display the links but only display the spell info if the spell equals something in the url....do you get the genreral idea?
also, \n is like a <br> so you'd do
PHP Code:
print "This is first line \n This is second line";
edit: fixed stuff