pastebin
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
pastebin
Follow @pastebin
create new paste
trending pastes
sign up
login
my settings
my profile
My Pastes
Public Pastes
Untitled
1 sec ago
Untitled
5 sec ago
Untitled
7 sec ago
Untitled
8 sec ago
Untitled
15 sec ago
Purzel Video Skinny Gir...
20 sec ago
How can I implement met...
20 sec ago
Untitled
22 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 21st, 2010 | Syntax:
PHP
| Size: 0.13 KB | Hits: 62 | Expires: Never
Download
|
Raw
|
Embed
|
Report abuse
This paste has a previous version,
view the difference
.
<?php
session_start
(
)
;
if
(
isset
(
$_SESSION
[
'sessionemail'
]
)
)
{
echo
"Logged in"
;
}
else
{
echo
"<a href="
login
.
php
">Login</a>"
;
}
?>
create new paste
|
create new version of this paste
RAW Paste Data
<?php session_start(); if(isset($_SESSION['sessionemail'])) { echo "Logged in"; } else { echo "<a href="login.php">Login</a>"; } ?>