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
strptime() equivalent for php4 ?!
Greetings!
this is my first post, thank you in advance for your replies.
Well, the ti
Problem Dereferencing
With these types and tables:
CREATE TYPE MANAGER AS OBJECT (
MGR_ID INTEGER,
problem in program for counting no of chars using pointers
Hi all, I was trying to make a program which counts number of chars in a string using concpt of poin
Grabbing Values From an Array for Posting
I have a grid array that I am using with a form that when it hits the currently named test.php it lo
cURL and Sessions
Ohai.
So, I'm trying to cURL a bunch of things off of a page, and put them into a session. I'
word wrap in emails help needed
Hello, I understand how wordwrap works in php and have used it well before. However when I used wor
Inserting into MySQL Newbie
Hi ive got a slight problem where ive made a simple web form where the customer inserts the ammount
data type in column definition
Hi,
I create a table with column called "Direction of Travel code ".
The travel codes in t
Floating Point Precision Loss
I'm writing a program to draw a three-dimensional cube (with a corner cut off) without using any 3D
Wierd echo error?
Hi, i got the most wierd php error ever and i don't know why..
Code: echo "<t