Yes...
So when you have a form with some radio:
<form method='post'>
<input type='radio' name='55' value='1' >
<input type='radio' name='55' value='2' >
<input type='radio' name='55' value='3' >
<input type='radio' name='55' value='4' >
<input type='submit' value='ok' >
</form>
if the name of the radio is a number will be returned by $_POST as INT!!!! not string as the manual says
if the name of the radio is 'test' will be of course returned ad string.


LinkBack URL
About LinkBacks



Reply With Quote
