# Verify flash to php transmittion --\> display back in flash

**URL:** https://forum.kirupa.com/t/verify-flash-to-php-transmittion-display-back-in-flash/170995
**Category:** Uncategorized
**Created:** [December 1, 2005, 1:28am UTC](https://forum.kirupa.com/t/verify-flash-to-php-transmittion-display-back-in-flash/170995 "2005-12-01T01:28:18Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![developmental](https://avatars.discourse-cdn.com/v4/letter/d/9de053/32.png) [@developmental](https://forum.kirupa.com/u/developmental)
#### Post date: [December 1, 2005, 1:28am UTC](https://forum.kirupa.com/t/verify-flash-to-php-transmittion-display-back-in-flash/170995/1 "2005-12-01T01:28:18Z")

</div>

I need a way for flash to transfer form variables to a php process page, and for the php to send a reply back to flash, so flash will display a confirmation of transmittion.

* * *

This is something I found that worked with another flash form but its in ASP.

## The ASP coding sends reply\_verify back to flash

\<%

Dim reply\_verify, returnToFlash

reply\_verify = Request.Form(“i\_name”)

returnToFlash = “reply\_verify=”; & Server.URLEncode(reply\_verify)

Response.Write returnToFlash

## %\>

This is the PHP that I thought would do it, but I guess I’m doing something wrong.

```php
//Confirmation Sent Back To Form
	   "reply_verify" = "i_name";
		$sendStr .= rawurlencode(reply_verify);
		echo $sendStr;

```

Any help would be greatly appreciated  
[zip](http://130public.net/test_area/contact_form/contact_form.zip) (php and fla)  
[html](http://130public.net/test_area/contact_form/)  
[swf](http://130public.net/test_area/contact_form/contact_form.swf)
