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
NetFlix PREMIUM ACCOUNT...
6 sec ago
megashare premium accou...
14 sec ago
Untitled
6 sec ago
senõr mouse
C | 8 sec ago
server.c
C | 9 sec ago
Untitled
C# | 9 sec ago
FastDebrid PREMIUM ACCO...
15 sec ago
Untitled
12 sec ago
Layout Width
Share Pastebin
Untitled
By: a guest | Mar 21st, 2010 | Syntax:
PHP
| Size: 0.13 KB | Hits: 66 | 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>"; } ?>