Create My Workout
Client Login:
/*
include(“aydpt.php”);
if(isset($_POST[‘Login’]) )
{
$username = strtolower($_POST[‘formUser’]);
$filename = $username . “/profile.xml”;
if (file_exists($username))
{
getProfile($username);
echo ”
You have VIP Access “;
echo “ CLICK HERE TO START“;
}
else
{
echo ”
Contact Alex Smith for VIP Access”;
}
}
*/
?>