Dynadot — .com Registration $8.99

Flash Cookies

Spaceship Spaceship
Watch
OK here is how to create a cookie in Flash backened with PHP.

Firstly we start with the Flash file.
  1. Create a flash button. To do so draw a rectangle, right click on it and select make symbol. select button then press ok.
  2. In the action panel of the button add the following:
    Code:
    on (release) {
        cookie = "flashsite";
        getURL("input.php", "", "POST");
    }
  3. On the action for the frame add the following:
    Code:
    cookie = "value";
  4. Now you have set a variable as soon as the SWF loads called cookie, when you press the button it changes to flashsite. the seconline takes you to input.php where it sees the variable and acts upon it.
  5. My input.php looks like this:
    PHP:
    <?php
        
    $cookie = $HTTP_POST_VARS['cookie'];
        
    if($cookie == 'flashsite') 
    { 
    setcookie("asgsoft_redirect", $cookie, time()+31536000);
    header("Location: index.php"); 
    } 
    if($cookie == 'nonflash') 
    { 
    setcookie("asgsoft_redirect", $cookie, time()+31536000);
    header("Location: nonflash"); 
    } 
        
    if($cookie == 'skipintro') 
    { 
    setcookie("asgsoft_redirect", $cookie, time()+31536000);
    header("Location: index.php?scene2"); 
    } 
        
    ?>
  6. This is part of mu upcomming site where it allows the user to select wheather to see flash/nonflash site. if they select flash then whether to see the into or not.
I hope this has been helpful to somebody.
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
Unstoppable DomainsUnstoppable Domains

We're social

Unstoppable Domains
Domain Recover
DomainEasy — Live Options
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back