|
Posted by Arjen on 07/21/05 17:50
Ridge Burner wrote:
> I can't for some reason get this cookie to set! Am I not understanding the
> correct way to do this? Here is the script:
>
> <?
> if(isset($_GET['video'])){
> if($_GET['video' == "hide"]){
> setcookie("video", "hide", time()+60*60*24*30*12, '/',
> 'mydomain.com');
> }
> if($_GET['video' == "show"]){
> setcookie("video", "", time()-(60*60*24*30*15), '/',
> 'mydomain.com');
> }
> }
> header("Location: index.php");
> ?>
>
> Any help would be appreciated!
compare
if($_GET['video' == "hide"])
with
if($_GET['video'] == "hide")
read more about arrays ....
Arjen
Navigation:
[Reply to this message]
|