Dear Everyone,
All three “header” lines are giving me error messages - any idea why? I believe everything else is set up correctly.
Thank you!!
Chava Drummond
[php]
<?php $var = $_GET['choice']; if($var == 'hall'){ header("Location: hall_questions.html"); }else if ($var == 'photo_video'){ header("Location: photo_video_questions.html"); }else if ($var == 'musician'){ header("Location: musician_questions.html"); }else { header("Location: contact.html"); } ?>[/php]