FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » how to unset session variable when leaving page
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
how to unset session variable when leaving page [message #174681] Mon, 27 June 2011 18:35 Go to next message
Co is currently offline  Co
Messages: 75
Registered: May 2011
Karma: 0
Member
Hi All,

I use a session variable to search for certain data in my records.
When a submit button is hit a session var gets filled with what I am
looking for.

if(isset($_POST['listByq']) && $_POST['listByq'] != "add") {
unset($_SESSION['listByq']);
unset($_SESSION['valueByq']);
$option = "";
$_SESSION['listByq'] = $_POST['listByq'];
if(isset($_POST['fname'])) { $_SESSION['valueByq'] =
$_POST['fname']; }
if(isset($_POST['country'])) { $_SESSION['valueByq'] =
$_POST['country']; }
}

If I browse to the next page but still using the same search query I
check again:

// IF WE HAVE A SESSION THEN FILL $OPTION WITH A VALUE
if(isset($_SESSION['listByq'])) {
$option = $_SESSION['listByq'];
if ($option == "by_country") {
$country = $_SESSION['valueByq']; //$_POST['country'];

$queryString = "WHERE country='$country' AND email_activated='1'";
$queryMsg = "Showing Members from the country you searched for";

} else if ($option == "by_firstname") {

$firstname = $_SESSION['valueByq']; //
$_POST['fname'];
$firstname = stripslashes($firstname);
$firstname = strip_tags($firstname);
$firstname = eregi_replace("`", "", $firstname);
$firstname = mysql_real_escape_string($firstname);
$queryString = "WHERE rank LIKE '%$firstname%' OR firstname LIKE '%
$firstname%' OR lastname LIKE '%$firstname%' AND email_activated='1'";
$queryMsg = "Showing Members with the name you searched for";

} else if ($option == "newest_members") {

$queryString = "WHERE email_activated='1' ORDER BY id DESC";
$queryMsg = "Showing Newest to Oldest Members";
}

} // end of if(isset($_SESSION....

This is all working like I want but when the user leaves the page and
returns later the session var is still
filled with the last search. I tried to clear the session var at the
beginning of the page but then when I browse
to the next page the session var will also be emptied.

Is it possible to clear the session var when leaving the page?

Marco
Re: how to unset session variable when leaving page [message #174683 is a reply to message #174681] Mon, 27 June 2011 21:29 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 6/27/2011 2:35 PM, Co wrote:
> Hi All,
>
> I use a session variable to search for certain data in my records.
> When a submit button is hit a session var gets filled with what I am
> looking for.
>
> if(isset($_POST['listByq'])&& $_POST['listByq'] != "add") {
> unset($_SESSION['listByq']);
> unset($_SESSION['valueByq']);
> $option = "";
> $_SESSION['listByq'] = $_POST['listByq'];
> if(isset($_POST['fname'])) { $_SESSION['valueByq'] =
> $_POST['fname']; }
> if(isset($_POST['country'])) { $_SESSION['valueByq'] =
> $_POST['country']; }
> }
>
> If I browse to the next page but still using the same search query I
> check again:
>
> // IF WE HAVE A SESSION THEN FILL $OPTION WITH A VALUE
> if(isset($_SESSION['listByq'])) {
> $option = $_SESSION['listByq'];
> if ($option == "by_country") {
> $country = $_SESSION['valueByq']; //$_POST['country'];
>
> $queryString = "WHERE country='$country' AND email_activated='1'";
> $queryMsg = "Showing Members from the country you searched for";
>
> } else if ($option == "by_firstname") {
>
> $firstname = $_SESSION['valueByq']; //
> $_POST['fname'];
> $firstname = stripslashes($firstname);
> $firstname = strip_tags($firstname);
> $firstname = eregi_replace("`", "", $firstname);
> $firstname = mysql_real_escape_string($firstname);
> $queryString = "WHERE rank LIKE '%$firstname%' OR firstname LIKE '%
> $firstname%' OR lastname LIKE '%$firstname%' AND email_activated='1'";
> $queryMsg = "Showing Members with the name you searched for";
>
> } else if ($option == "newest_members") {
>
> $queryString = "WHERE email_activated='1' ORDER BY id DESC";
> $queryMsg = "Showing Newest to Oldest Members";
> }
>
> } // end of if(isset($_SESSION....
>
> This is all working like I want but when the user leaves the page and
> returns later the session var is still
> filled with the last search. I tried to clear the session var at the
> beginning of the page but then when I browse
> to the next page the session var will also be emptied.
>
> Is it possible to clear the session var when leaving the page?
>
> Marco

As you've been told many times. PHP HAS NO IDEA WHEN THE USER LEAVES
YOUR PAGE. By the time the page shows up in the user's browser, the PHP
script has completed and sent all its data to the client.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: how to unset session variable when leaving page [message #174687 is a reply to message #174681] Mon, 27 June 2011 22:41 Go to previous messageGo to next message
dougatmilmacdotcom is currently offline  dougatmilmacdotcom
Messages: 24
Registered: May 2011
Karma: 0
Junior Member
In article <fdb4f334-c961-4c2c-809e-819767790b5c(at)x12g2000yql(dot)googlegroups(dot)com>, Co <vonclausowitz(at)gmail(dot)com> wrote:
[snip lots of irrelevant stuff]
> Is it possible to clear the session var when leaving the page?

No. Think about it: your PHP script runs on *your server*. Suppose I'm
visiting your web site, then navigate away to, say, Google. That page is
served by *Google's* server -- how do you imagine that it might be possible
for your server to know that I did that?

The *only* thing your PHP script knows about is what gets sent to it from the
browser. There is no way at all by which your script can tell the difference
between these scenarios, because *none* of them result in the browser sending
anything to your script:
a) Your page is still displayed on my screen and I'm looking at it;
b) Your page is still displayed on my screen, but I'm no longer looking at it
because I stepped out for coffee;
c) Your page is still open in my browser but I'm no longer looking at it
because I'm watching something more interesting in a different tab;
d) Your page is no longer displayed on my screen because I navigated to some
other web site;
e) Your page is no longer displayed on my screen because I turned my computer
off and went to bed;
f) Your page is no longer displayed on my screen because alien invaders from
Proxima Centauri have reduced my entire city to a glowing heap of radioactive
slag.
Re: how to unset session variable when leaving page [message #174689 is a reply to message #174687] Tue, 28 June 2011 03:03 Go to previous messageGo to next message
Mick Gurling is currently offline  Mick Gurling
Messages: 2
Registered: June 2011
Karma: 0
Junior Member
We Proxima Centaurians would never do that!
We like Earthlings
(Especially with onions and a little Franks Red Hot Sauce).

On Mon, 27 Jun 2011 22:41:25 +0000, Doug Miller wrote:

> In article
> <fdb4f334-c961-4c2c-809e-819767790b5c(at)x12g2000yql(dot)googlegroups(dot)com>, Co
> <vonclausowitz(at)gmail(dot)com> wrote: [snip lots of irrelevant stuff]
>> Is it possible to clear the session var when leaving the page?
>
> No. Think about it: your PHP script runs on *your server*. Suppose I'm
> visiting your web site, then navigate away to, say, Google. That page is
> served by *Google's* server -- how do you imagine that it might be
> possible for your server to know that I did that?
>
> The *only* thing your PHP script knows about is what gets sent to it
> from the browser. There is no way at all by which your script can tell
> the difference between these scenarios, because *none* of them result in
> the browser sending anything to your script:
> a) Your page is still displayed on my screen and I'm looking at it; b)
> Your page is still displayed on my screen, but I'm no longer looking at
> it because I stepped out for coffee;
> c) Your page is still open in my browser but I'm no longer looking at it
> because I'm watching something more interesting in a different tab; d)
> Your page is no longer displayed on my screen because I navigated to
> some other web site;
> e) Your page is no longer displayed on my screen because I turned my
> computer off and went to bed;
> f) Your page is no longer displayed on my screen because alien invaders
> from Proxima Centauri have reduced my entire city to a glowing heap of
> radioactive slag.
Re: how to unset session variable when leaving page [message #174706 is a reply to message #174683] Tue, 28 June 2011 23:31 Go to previous messageGo to next message
unknown is currently offline  unknown
Messages: 1
Registered: June 2011
Karma: 0
Junior Member
On Mon, 27 Jun 2011 17:29:55 -0400, Jerry Stuckle
<jstucklex(at)attglobal(dot)net> wrote:

[done]

>
> As you've been told many times. PHP HAS NO IDEA WHEN THE USER LEAVES
> YOUR PAGE. By the time the page shows up in the user's browser, the PHP
> script has completed and sent all its data to the client.

Of course you COULD put one or more big DONE buttons (triggering
another PHP script) on the page and hope the user follows
instructions.
Re: how to unset session variable when leaving page [message #174708 is a reply to message #174706] Wed, 29 June 2011 00:23 Go to previous message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 6/28/2011 7:31 PM, unknown wrote:
> On Mon, 27 Jun 2011 17:29:55 -0400, Jerry Stuckle
> <jstucklex(at)attglobal(dot)net> wrote:
>
> [done]
>
>>
>> As you've been told many times. PHP HAS NO IDEA WHEN THE USER LEAVES
>> YOUR PAGE. By the time the page shows up in the user's browser, the PHP
>> script has completed and sent all its data to the client.
>
> Of course you COULD put one or more big DONE buttons (triggering
> another PHP script) on the page and hope the user follows
> instructions.

That doesn't solve the problem - because a large percentage of people don't.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: debugging with Netbeans
Next Topic: get members who have birthday this week
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Fri Sep 27 17:25:26 GMT 2024

Total time taken to generate the page: 0.03164 seconds