**START CODE**
<?
if ($go == 'about') { //if string = "about": load about subsection
require ('/home/jsnweb/public/html/pages/index_aboutus.php');
}
if ($go == 'faq') { //if string = "faq" load faqs subsection
require ('/home/jsnweb/public/html/pages/index_faqs.php');
}
else { //if string = "BLANK" or anything else load MAIN section
require ('/home/jsnweb/public/html/pages/index_main.php');
}
?>
**END CODE**> -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Travis Rabe > Sent: Monday, August 11, 2003 12:40 PM - FamHost > To: [EMAIL PROTECTED] Ipswitch. Com > Subject: [IMail Forum] OT: PHP Assistance > > > Good Morning, > > I am trying to write a PHP script that does browser redirection > based upon > the location in the URL, to another page. If you have time and would like > to give me a hand, please send me an e-mail off list. > > Thanks, > > > --------------------------------- > Travis Rabe > > > To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html > List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ > Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/ > ___________________________________________________________________ > Virus Scanned and Filtered by http://www.FamHost.com E-Mail System. > > ___________________________________________________________________ Virus Scanned and Filtered by http://www.FamHost.com E-Mail System. To Unsubscribe: http://www.ipswitch.com/support/mailing-lists.html List Archive: http://www.mail-archive.com/imail_forum%40list.ipswitch.com/ Knowledge Base/FAQ: http://www.ipswitch.com/support/IMail/
