Jump to content

[SOLVED] cookie help


samoht

Recommended Posts

Hello all,

 

I was wondering if I could get some help setting a cookie based on a selection from landing page. I then want to unset that cookie once a user navigates away from the site Or they return to the landing page.

 

Will I need to use Ajax if there is a selection involved??

 

Thanks for any help,

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/177138-solved-cookie-help/
Share on other sites

can I just create the form and with each input button say

session_register("locale");

 

<input name=here type=button value=here onclick=window(mysite.php) />

<input name=there type button value=there onclick=window(mysite.php) />

 

then on mysite.php

 

 

if(isset($_POST['here']))

  $locale = $_POST['here'];

else

  $locale = $_POST['there'];

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/177138-solved-cookie-help/#findComment-934059
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.