Wrox Home  
Search P2P Archive for: Go

  Return to Index  

flash_programming thread: HOw do I post information from flash to PHP files without


Message #1 by "Sokun, Chorn" <sokunxp@g...> on Tue, 16 Oct 2001 17:52:48 +0700
Well there are a number of things it could be cutting off when you send the
data to PHP

Firstly it could be cutting off the HTML tags, in this case use the function

$mytext = htmlSpecialChars($myvar1);

Secondly it could be cutting off text when you send it to a field in mysql,
this is probably because you have the field set to varchar(50) which will
only exept 50 characters, try using largeblob, or longtext, or just specify
150 as the total amount of chars the field will receive.

Hope that makes sense, good luck

Richard Poole



  Return to Index