The following are tables in html PASSING variables when calling another page.
you can add as many variables (flags) as you need to, separate by a &
see the following sample link:
http://www.sample.com/insurance/ps-generic-auto-neutral-default?code=8004309008&se=Google&cmp=INS+-+FL&adgr=HTS+-+INS&kwd=insurance&srcfrc=true&mt=e&gclid=CN3L2ce_8rQCFXGRPAodrCEAiw&
=============================================================
php examples:
The following code reads the value of the variables send by above page:
Schedule for classes held on Tuesdays and Thrusdays
";
include('../../includes/WebM_importantDates_tt_2013sp.php');
}
else if ( $days == 'MW' )
{
echo "Schedule for classes held on Monday and Wednesdays
";
include('../../includes/WebM_importantDates_mw_2013sp.php');
}
?>
Schedule for classes held on Tuesdays and Thrusdays
";
include('../../includes/cop2250_importantDates_tt_2013sp.php');
}
else if ( $days == 'MW' )
{
echo "Schedule for classes held on Monday and Wednesdays
";
include('../../includes/cop2250_importantDates_mw_2013sp.php');
}
else if ( $days == 'MWFLAME' )
{
echo "Schedule for classes held on Monday and Wednesdays for FLAME
";
include('../../includes/cop2250_importantDates_mw_2013spFLAME.php');
}
?>