I've isolated some problems I've been having down to the CakePHP Form
helper. It seems that the form helper is unable to create HTML form
objects with correct values when the $form->input( ) method is called
while passing in extended ASCII characters.
For example, this code creates a text box with the value : insx}
$this->Form->input($datavalue, array('value'=>chr(105).chr(110).chr
(115).chr(120).chr(125)));
This code creates a text box with a blank value:
$this->Form->input($datavalue, array('value'=>chr(105).chr(110).chr
(115).chr(130).chr(135)));
The difference is the last two characters. Anytime I submit a value to
the form helper with a character of over 127, the form helper fails to
populate the HTML form element it creates with the value I pass in.
Thoughts / Suggestions? Thanks!
PS: I'm running the latest version of RC3.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---