/    Sign up×
Community /Pin to ProfileBookmark

Members only area

i have a cookie based login system and i now need to be able to get users to access particular pages after logging in. dnt spose ne1 has any decent code??

to post a comment
PHP

3 Comments(s)

Copy linkTweet thisAlerts:
@CrazyGazNov 22.2006 — Err...in its most basic form:

[code=php]
if (isset($COOKIENAME))
{
PAGE STUFF
}
else
{
die("You must be a member.");
}
[/code]


Do you mean something like that?
Copy linkTweet thisAlerts:
@gazzwi86authorNov 22.2006 — well... erm... ive got a few problems because ive used code from a tutorial and it just returned as errors. mysql_fetch_array dont wrk along with sum others so i dnt no wat t do.

<?

$searching=$_POST['searching'];

$find=$_
POST['find'];


//This is only displayed if they have submitted the form

if ($searching =="yes")

{

echo "<h2>Results</h2><p>";

//If they did not enter a search term we give them an error

if ($find == "")

{

echo "<p>You forgot to enter a search term";

exit;

}

// Otherwise we connect to our Database

mysql_connect("", "", "") or die(mysql_error());

mysql_select_db("") or die(mysql_error());

// We preform a bit of filtering

$find = strtoupper($find);

$find = strip_tags($find);

$find = trim ($find);

//Now we search for our search term, in the field the user specified

$data = mysql_query("SELECT * FROM upper($field) LIKE'%$find%' WHERE * ");

//And we display the results

while($result=mysql_fetch_array($data))

{

echo $result['audios'];

echo "<br>";

echo $result['games'];

echo "<br>";

echo $result['pics'];

echo "<br>";

echo $result['videos'];

echo "<br>";

echo $result['forum_question'];

echo "<br>";

echo $result['users'];

echo "<br>";

echo "<br>";

}

//This counts the number or results - and if there wasn't any it gives them a little message explaining that

$anymatches=mysql_num_rows($data);

if ($anymatches == 0)

{

echo "Sorry, but we can not find an entry to match your query<br><br>";

}

//And we remind them what they searched for

echo "<b>Searched For:</b> " .$find;

}

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />

<title>- Search The Buzz Online -</title>

</head>

<body> <h2>Search</h2>

<form name="search" method="post" action="<?=$PHP_SELF?>">

Seach for: <input type="text" name="find" /> in

<Select NAME="field">

<Option VALUE="audios">Audio File</option>

<Option VALUE="games">Game File</option>

<Option VALUE="pics">Image File</option>

<Option VALUE="videos">Video File</option>

<Option VALUE="forum_question">Forum Title</option>

<Option VALUE="users">User</option>

</Select>

<input type="hidden" name="searching" value="yes" />

<input type="submit" name="search" value="Search" />

</form>

</body>

</html>

anymatches and data appear to be a prob. any idea wat there values should be cos im lost!
Copy linkTweet thisAlerts:
@JayMNov 23.2006 — Remove your database login information immediately! You are begging for trouble.
×

Success!

Help @gazzwi86 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.18,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...