# The Script

**URL:** https://forum.kirupa.com/t/the-script/293884
**Category:** flash
**Created:** [August 5, 2009, 9:37am UTC](https://forum.kirupa.com/t/the-script/293884 "2009-08-05T09:37:38Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ron\_ron](https://avatars.discourse-cdn.com/v4/letter/r/f05b48/32.png) [@ron\_ron](https://forum.kirupa.com/u/ron_ron)
#### Post date: [August 5, 2009, 9:37am UTC](https://forum.kirupa.com/t/the-script/293884/1 "2009-08-05T09:37:38Z")

</div>

How do I write the PHP server script to get the text which is in a Dynamic Textbox?

```php
 
<?PHP 
$to = mail@mail.net;
 
$subject = "SUBJECT SUBJECT"; 
$headers = "From:" .$email."
"; 
$headers .= "Bcc: $email
"; 
$message = "Name: " . $thename; 
$message .= "

Address: " . $theaddress;

$sentOk = mail("$to",$subject,$message,$headers); 
echo "sentOk=" . $sentOk;

```
