why does my session end?
Posted on
16th Feb 2014 07:03 pm by
admin
my connect.php starts the session just so you know
i can navigate arround my site fine except when i come to this page. it lets me in but then when i try to leave no matter what page i go to or which page i come from it shows the error !is_authed
Also can someone check my code i wasnt sure if i could do a loop within another one
Code: <?php
include_once 'Connect.php';
if (!is_authed())
{
die ('You are not permitted to view this page, <a href="index.php">click here</a> to go back.');
}
?>
<html><head><title>Untitled Document</title>
<link href="style.css" rel="stylesheet" type="text/css"></head>
<body>
<div class=logo><?php include "logo.php";?></div>
<div class=navigationbarbox><?php include "navigationbar.php";?></div>
<div class=welcome>
<?php
// Checks friends
$member = $_SESSION["id"];
$query = ("SELECT * FROM friends WHERE member = '$member'");
$result= mysql_query ($query) or die ('Could not query.');
$exist = mysql_num_rows($result);
if($exist=='0')
{
echo"You have no friends";
}
else // if any friends gets
{
while ($row = mysql_fetch_assoc($result))
{
$friendwithid = $row["friendwith"];
$query = ("SELECT * FROM members WHERE $friendwith = '$friendwithid'");
$result= mysql_query ($query) or die ('Could not query.');
while ($row = mysql_fetch_assoc($result))
{
$photo = $row["photo"];
$username = $row["username"];
}
echo "<img src='http://www.myurl.co.uk/NEWTEACH/userimages/$photo' width='100' height='150'>
";
echo"$username
";
echo'<a href="friendsdelete.php?userid='.$userid.'">Remove Friend</a>';
}
}
?>
</div>
<div class=footerbox><?php include "footer.php";?></div>
</body>
</html>
No comments posted yet
Your Answer:
Login to answer
96
37
Other forums
Multi dimensional arrays
If I put in this code:
1
2
3
4
5
6
7
8
9
10
11
12
13<
Problem with DB connection
Hello there! I'm new to this forum and I'm new to PHP coding also. I wrote something that doesn't ma
foreach iterator
Hi Guys
Does the foreach loop have an inbuilt iterator ?
how to timeout $doc = new DOMDocument()->load($url)
I am currently using this $doc->load($url) to fetch an rss feed.
If a feed takes long than
Count Session and Trigger Events
I am New in PHP, seeking a method to count logged users by counting the sessions or any …, is
What are the two different files you download to update kernel?
What are the two different files you download to update kernel?
help with multi-update
Now sure how to ask this really....
10g database if that matters.
I have a customer
upgrade from 4.7 to ECC 6.0
Hi all,
we are going to do an upgrade from R/3 4.7 to ECC 6.0. I need to know if i can find som
check_changed_data - I can't get data from the called method event
I use check_changed_data to trigger my event method.
The method delivers er_changed_data.
Return X values where an ID number doesnt matter
Well as for subject heading, thats the best i could think of.
Currently im having a problem w