I what to add a new page,but i only want the members that upgarde to pro membership to beable to view it,anybody know how to do this( i have the page set up,just need to know how to make it viewable for just pro members)
thank
I what to add a new page,but i only want the members that upgarde to pro membership to beable to view it,anybody know how to do this( i have the page set up,just need to know how to make it viewable for just pro members) thank |
Hello! It will be more easy to add membership action. INSERT INTO `MemActions` Set `Name`='My new action'; Check what ID returns this query SELECT `ID` FROM `MemActions` WHERE `Name`='My new action'; remember this value.
$iId = (int)$_COOKIE['memebrID']; $check_res = checkAction( $iId, number of this action); if ($check_res[CHECK_ACTION_RESULT] != CHECK_ACTION_RESULT_ALLOWED) exit; Regard |