OK,I know I am a lil retarded and cant comprehend thiings sometimes, but I will do my best to explain what I have going on, and hope it helps you.
I created a simple php page with the following code and called it test.php:
<?php
session_start();
$membID = $_GET['memberID'];
if (isset($membID)) {
//you can start your own sessions
$_SESSION['start'] = time();
echo $_SESSION['start'];
// you can add sql queries to pull in info based on user
// add your connection script here
$membship = mysql_query("SELECT * FROM sys_acl_levels_members WHERE IDMember = '$membID'");
while ($membshiplvl = mysql_fetch_row($membship)) {
$Level = $membshiplvl[1]; //-- this will check membership levels
}
if ($Level == '4') {
//whatever you only want this membership level to see - in my case i only want the videos to be viewable by those with the streaming membership level, which is 4
} else {
}
}
else
{
// error message
}
?>
Then, I created my icon/link for the homepage via the sys_mobile_menu table in the database and used this for the url field:
{site_url}test.php?memberID={member_id}