Opened 13 years ago
Closed 13 years ago
#5964 closed bug (invalid)
$.post similiar variable name a post variable name...
Reported by: | Oyeme | Owned by: | joern |
---|---|---|---|
Priority: | major | Milestone: | 1.4.1 |
Component: | web | Version: | 1.4.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Variable and post variable not work with similiar name.
var PFrom = $('#PFrom').val(); example PFrom = 'test' $.post('curl.php', {'PFrom' : PFrom }function(data) { ...
}); RETURN : Array ( [PFromA] => )
Variable and post variable not work with similiar name.
This work fine : var PFrom = $('#PFrom').val(); example PFrom = 'test' $.post('curl.php', {'PFromNOTSIM' : PFrom }function(data) { ...
}); RETURN : Array ( [PFromA] => test ) This work fine..
Note: See
TracTickets for help on using
tickets.
Please reopen and attach a test case.