Code: Select all
<?php
if (isset($var_name)) {
// show your page
} else {
//show your log-in page
}
?>Moderator: General Moderators
Code: Select all
<?php
if (isset($var_name)) {
// show your page
} else {
//show your log-in page
}
?>Code: Select all
<?php
/* Check User Script */
session_start(); // Start Session
include 'db.php';
// Conver to simple variables
$username = $_POST['username'];
$password = $_POST['password'];
if((!$username) || (!$password)){
echo "Please enter ALL of the information! <br />";
include 'login_form.html';
exit();
}
// Convert password to md5 hash
$password = md5($password);
// check if the user info validates the db
$sql = mysql_query("SELECT * FROM users WHERE username='$username' AND password='$password' AND activated='1'");
$login_check = mysql_num_rows($sql);
if($login_check > 0){
while($row = mysql_fetch_array($sql)){
foreach( $row AS $key => $val ){
$$key = stripslashes( $val );
}
// Register some session variables!
session_register('first_name');
$_SESSION['first_name'] = $first_name;
session_register('last_name');
$_SESSION['last_name'] = $last_name;
session_register('email_address');
$_SESSION['email_address'] = $email_address;
session_register('special_user');
$_SESSION['user_level'] = $user_level;
[b]$access = true;[/b]
mysql_query("UPDATE users SET last_login=now() WHERE userid='$userid'");
header("Location: login_success.php");
}
} else {
echo "You could not be logged in! Either the username and password do not match or you have not validated your membership!<br />
Please try again!<br />";
include 'login_form.html';
[b]$access = false;[/b]
}
?>I dont think the moderators would approve of this style post...monkeyj wrote:trying something else now :-d
Code: Select all
<?
session_start();
echo "Welcome ". $_SESSIONї'first_name'] ." ". $_SESSIONї'last_name'] ."! You have made it to the members area!<br /><br />";
echo "Your user level is ". $_SESSIONї'user_level']." which enables you access to the following areas: <br />";
if($_SESSIONї'user_level'] == 0){
include 'http://monkeyblast.com/babes/';
}
if($_SESSIONї'user_level'] == 1){
echo "- Forums<br />- Chat Room<br />- Moderator Area<br />";
}
echo "<br /><a href=logout.php>Logout</a>";
?>