S
|
swgiles 11/30/2009 |
Create a session varible, call it $_SESSION['PageType'] or something of the like. On the events page, before page is processed, you'll want something like $_SESSION['PageType']= (some unique identifier);
if ($_SESSION['PageType'] != 0) //where 0 lists everything
|
W
|
wfcentral author 12/3/2009 |
two problems...
|
J
|
Jane 12/4/2009 |
Hi, if ($_SESSION['PageType'] != 0) //where 0 lists everything
|
W
|
wfcentral author 12/4/2009 |
for this line Hi, you can create just one view, then add WHERE clause dynamically in the After table initialized event on the Events tab: if ($_SESSION['PageType'] != 0) //where 0 lists everything
|
S
|
swgiles 12/4/2009 |
Yep, that's how it corresponds. |