[advanced search]
16 members in the live chat room. Join Chat!
Register Rules & FAQ NP$ Store Active Threads Mark Forums Read

System Maintenance: NamePros will be offline for 20 minutes at the top of the hour (4AM EST)

Go Back   NamePros.Com > Design and Development > Webmaster Tutorials
User Name
Password

Old 03-04-2006, 01:32 PM   · #1
asgsoft
NamePros Regular
 
asgsoft's Avatar
 
Location: At Home
Trader Rating: (36)
Join Date: Sep 2005
Posts: 805
NP$: 981.10 (Donate)
asgsoft is just really niceasgsoft is just really niceasgsoft is just really niceasgsoft is just really niceasgsoft is just really nice
Flash Cookies

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 Code:
    <?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.


Please register or log-in into NamePros to hide ads
asgsoft is offline   Reply With Quote
Closed Thread

NamePros is a revenue sharing forum.

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Mr.Spot Freelance flash designer(Cool Flash Site) spot For Sale / Advertising Board 0 09-27-2005 09:24 PM
Protect your flash files from hotlinking - specially for arcade sites! Jim_Westergren CODE 15 08-29-2005 01:42 PM
REQUEST - Flash intro, banners and other future projects gRF For Sale / Advertising Board 0 07-29-2005 12:49 AM
Flash Deadly Sins (that can kill your web business) abacomedia Graphic Design / Flash 2 06-26-2004 09:32 PM
Using Music on your Site - WAV, MP3, MIDI, Flash? abacomedia Web Design Discussion 1 05-20-2004 01:04 PM

Site Sponsors
domainsubway.com Custom Logo Design Hunting Moon
Advertise your business at NamePros
All times are GMT -7. The time now is 12:42 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0