<a href="changestyle.php?choice=classic"> Classic View</a> | <a href="changestyle.php?choice=hoiday"> Holiday View</a> | <a href="changestyle.php?choice=normal"> Normal View</a>The code above simply links to three styles: Classic, Holiday, or Normal (our default style).
Another way to do it is with a drop down menu:
<form action="changestyle.php" method="post">
<select name="choice">
<option value="classic" selected>Classic View</option>
<option value="holiday">Holiday View</option>
<option value="normal">Normal View</option>
</select>
<input type="submit" value="Go">
</form>

