I can’t work with Flash+PHP dammit! I tried to read some tutorials but the question is becoming a quest for the holy grail…
Here is what i want to do: I have a php file with the following code:
<?php
session_start();
echo nl2br("A simple test
");
if(!isset($_SESSION['contador']))
$contador=20;
else
$contador=$_SESSION['contador'];
$_SESSION['contador']=30;
echo "&counter=$contador";
?>
In Flash MX 2004 i have something like…
myvar = new LoadVars();
myvar.load("teste.php");
gotoAndPlay("myvar.counter);
Well i want to create a session in order to allow a user to see my flash intro (in the website i’m building) just the first time, while the session is ON…
The question is that i’m not sure on how to do it and it seems really hard to find a similar tutorial on net
Could you guys help me out with some code??
[[]]