I it possible to use conditional echoes to determine which set of php appears on the page: I have three sets of calendar scripts, and I need each to appear when a column value is being satisfied (how might these appear combined, if this can be done? there are about 25 different values so please keep sets together):
<? if ($row_Mem['CMstyle_']=='3')
$calendar = new HAL_Calendar("../");
$calendar->setViewModParam("all");
<? if ($row_Mem['CMstyle_']=='2')
$calendar = new HAL_Calendar("../");
$calendar->setViewModParam("some");
<? if ($row_Mem['CMstyle_']=='1')
$calendar = new HAL_Calendar("../");
$calendar->setViewModParam("none");