on (release){Youll notice two things:
getURL(http://www.yoursite.com/yourdirectory/yourfilename.php,_blank,GET) ;
}
The filename that the getURL command is pointing to ends in .php, instead of .html or .swf. Because were embedding PHP code into the page that displays the eCard, it has to end in a valid PHP file extension. The Variables field says Send using GET, and theres a big GET inside the code itself.
There are two methods of sending variables: GET and POST. GET can make for some messy URLs, as it appends the data to the URL called by the getURL function but its quick and easy to call again later with little fuss. POST puts the data inside the HTTP headers of a file and can be a bit harder to call later. Both gather the values of all of the variables in the Flash movie, and send them wherever you tell them to go by appending them to the end of the url called in the following format:
http://www.yourdomain.com/yourdirectory/yourfilename.php?varname=varvalue
When more than one variable is sent, theyre concatenated using an ampersand.
http://www.yourdomain.com/yourdirectory/yourfilename.php?varname=varvalue&variable2=secondvariablevalue


