admin
Administrator
     
Offline
Posts: 237
|
 |
« on: August 08, 2017, 06:01: PM » |
|
Simple show if based on a session variable
<?php
if (@$_SESSION['kt_use'] == "Family") {
Show This
}
?>
Show if then else based on session
<?php if (@$_SESSION['kt_use'] == "Family") {
Show this
} else {
Else show this
}
?>
|