Welcome to Dream.In.Code
Getting Help is Easy!

Join 107,422 Programmers for FREE! Ask your question and get quick answers from experts. There are 1,171 online right now! We've got more than 500 tutorials and 2,000 snippets. Join and find out why Dream.In.Code is the #1 programming help community on the internet! Registration is fast and FREE... Join Now!



Need help in sending data from flash to PHP

 
Reply to this topicStart new topic

Need help in sending data from flash to PHP

designyrsite
post 28 Feb, 2007 - 08:39 AM
Post #1


New D.I.C Head

*
Joined: 28 Feb, 2007
Posts: 1


My Contributions


I have made a quiz in flash, also tried the code putting it on the button the script was working but don't kown what happen. i want flash to send my input text data to php. n continue to next slide. and in end when i click on the link that php page gets open but the data is not seen in php.

below is the code which i have put in flash on sumbit
CODE

on (release, keyPress "<Enter>")
{
    var myVars:LoadVars = new LoadVars();
    myVars.variable1 = "name";
    myVars.send("certificate.php","POST");
        gotoAndStop(4);
}

"name" is my instance of inputtext.

and this code is written in php :
<?php
        
// Receiving the variables.
$name = $_POST['name'];

// Printing out the variables.
        echo  $name;

?>        




i don't want the php page to open in middle i want it to open in the end link.

do help me.
User is offlineProfile CardPM

Go to the top of the page


basitjee
post 17 Jun, 2008 - 01:56 AM
Post #2


New D.I.C Head

*
Joined: 17 Jun, 2008
Posts: 1

this code will work and it is receiving data in PHP from Flash.I amend your code like this.

here is .fla file
[code]
on (release) {
var myVars:LoadVars = new LoadVars();
myVars.name = "it is working";
myVars.send("certificate.php","POST");
}


here is .php file
[code]
<?php
// Receiving the variables.
$name = $_POST['name'];
// Printing out the variables.
echo $name;
?>


Explanation:
I just place name of instance with myVars.in this example it is "name"
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 8/28/08 08:31PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month