# Form Fun with PHP+Flash

**URL:** https://forum.kirupa.com/t/form-fun-with-php-flash/161248
**Category:** flash
**Created:** [September 2, 2005, 4:20am UTC](https://forum.kirupa.com/t/form-fun-with-php-flash/161248 "2005-09-02T04:20:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Qugh](https://avatars.discourse-cdn.com/v4/letter/q/76d3ee/32.png) [@Qugh](https://forum.kirupa.com/u/Qugh)
#### Post date: [September 2, 2005, 4:20am UTC](https://forum.kirupa.com/t/form-fun-with-php-flash/161248/1 "2005-09-02T04:20:59Z")

</div>

My main question is this. When I script out normal html from a normal \<textarea\>, I always convert the "  
"s to “\<br\>“s. With flash, if I use a multi-lined text box and send it to php, it doesn’t utilize the  
character (supposedly) because when I eregi\_replace(”  
“,”\<br\>”,$text); it doesn’t do anything! Anyone have ideas?

The code coming from a flash, multi-lined text input field:  
**$story = eregi\_replace("  
“,”\<br\>",chop($HTTP\_POST\_VARS[‘story’]));**
