This question is part Flash and part PHP. I figure it’s better off here. I want to make a master detail set in Flash. I’m setting up a “Latest News” section ony my website.
I want to duplicate mc’s in Flash that will hold the title of the news entry or something to that effect. In my php page I have:
echo "<br><a href=\"details.php?id=".$row['id']."\">Details</a>";
Which of course sends the “id” of the entry to the details page which then displays the full article.
After that I’d like to send the “id” to details.php and then load the proper data from there(full article of “id”)
So…
I have my php set up, but I’m definatly lost on how I should send this to Flash. Not lost but need some guidence.
Basically if someone can explain how to send this code to Flash, I would pretty much be set.
echo "<br><a href=\"details.php?id=".$row['id']."\">Details</a>";
I know you can’t use a href in flash, I’m thinking sendAndLoad(); is what I’m after, but again I’m a tad lost here.
Thanks, if I need to explain better please let me know.