|
include "menu.include"; ?>
|
- |
if($loginOk == 0 || $loginOk == 2){ // user is logged in, can submit article.
if($loginOk == 2){
?>
Login failed.
}
else{
?>
You are not logged in.
You should log in to view the blog.
}
include "./../login.include";
}
else{
// get the user name, from user name you can get the user id.
$userName = $_SESSION['user5237'];
//echo $userName;
$array = getViewableProfile($_SESSION['user5237Id'],$userName);
// get the user information, including user's privacy.
// privacy=2 can be viewed by every one, privacy=1 can be viewed by friends only
$about=$array["about"];
$what_like=$array["what_like"];
$interest=$array["interest"];
$book=$array["book"];
$movie=$array["movie"];
$tv=$array["tv"];
$people=$array["people"];
$celebrity=$array["celebrity"];
$money_or_science=$array["money_or_science"];
$politic=$array["politic"];
$education=$array["education"];
$job=$array["job"];
$first_name=$array["first_name"];
//echo $first_name."22222222222222222";
$last_name=$array["last_name"];
$city=$array["city"];
$province=$array["province"];
$country=$array["country"];
$privacy=$array["first_name"];
$line=$array["line"];
$age=$array["age"];
$last_logged_in=$array["last_logged_in"];
$counter=$array["counter"];
$user_id=$array["user_id"];
$imageFileName=getProfileImage($user_id);
$image="/users/".$user_id."/profile/".$imageFileName;
if(!file_exists($path.$image))
$image="/image/noPic.png";
// get all blog entries.
$entries = getLatestBlogEntries($user_id, $userName);
if(money_or_science == 0)
$money_or_science="I think science is better.";
else
$money_or_science="I think money is better.";
if($education == 0){
$education="Not specified.";
}
else if($education == 1){
$education="High school";
}
else if($education == 2){
$education="College degree";
}
else if($education == 3){
$education="University degree.";
}
else if($education == 4){
$education="In school";
}
else if($education == 5){
$education="In colledge";
}
else if($education == 6){
$education="In university";
}
// on the left side a short description of
?>
[ Edit my profile ]
[ Edit my pictures ]
[ Account Settings ]
echo $first_name; ?>
echo $line; ?>
|
|
echo $first_name; ?>
Age: echo $age; ?>
Education: echo $education; ?>
Location: echo $city. ", " .$province. ", " .$country; ?>
Viewed: echo $counter; ?>
|
Last login: echo $last_logged_in; ?>
|
|
|
|
About echo $userName; ?> [ Edit ... ]
|
echo $about; ?>
|
|
echo $userName; ?>'s latest blog entries
|
echo $entries; ?>
[ View all ... ]
|
|
What echo $userName; ?> is here for? [ Edit ... ]
|
echo $what_like; ?>
|
|
|
Interests [ Edit ... ]
|
echo $interest; ?>
|
|
Favourite Books [ Edit ... ]
|
echo $book; ?>
|
|
Favourite Movies [ Edit ... ]
|
echo $movie; ?>
|
|
Favourite TV shows [ Edit ... ]
|
echo $tv; ?>
|
|
What do I think about celebrities? [ Edit ... ]
|
echo $celebrity; ?>
|
|
My favorite people on earth? [ Edit ... ]
|
echo $people; ?>
|
|
What do I think about politicians? [ Edit ... ]
|
echo $politic; ?>
|
|
Money is better or science? [ Edit ... ]
|
echo $money_or_science; ?>
|
}
?>
|