php - $_POST key name length? -
i experiencing odd behaviour. have following 2 <input type='image'>
(with src
attribute equal name
attribute):
<input type='image' name='http://farm1.static.flickr.com/224/471627793_fbda6cecbe_s.jpg'> <input type='image' name='http://farm5.static.flickr.com/4053/4501238330_c5a85162ef_s.jpg'>
my question is: why first input submit , second 1 doesn't? using cakephp , if click on second image, $this->params['form']
empty. when click on first image, works fine: $this->params['form']
contains correct image name it's coordinates clicked.
this odd behaviour , believe can happen if $_post
limit keys' length.
any highly appreciated! thank you!
php not limit field name length multipart/
or -urlencoded
post requests.
but suhosin indeed have http://www.hardened-php.net/suhosin/configuration.html#suhosin.post.max_name_length default of 64
. , second url indeed 64 characters long.
less likely, possible mod_security setup. spill error message rather truncating.
Comments
Post a Comment