Hi !
If I have an input field
<form ... method="post">
<input type="text" name="abc def">
</form>
It always comes through as
$_POST["abc_def"]
I tried urlencode and rawurlencode and can't quite understand why it
is changed somwhere.
Converting " " to "_" is not quite what I want, because it should be
working with generated field names.
Any ideas?
Jochen
--
Jochen Daum - CANS Ltd.
PHP DB Edit Toolkit -- PHP scripts for building
database editing interfaces.
If I have an input field
<form ... method="post">
<input type="text" name="abc def">
</form>
It always comes through as
$_POST["abc_def"]
I tried urlencode and rawurlencode and can't quite understand why it
is changed somwhere.
Converting " " to "_" is not quite what I want, because it should be
working with generated field names.
Any ideas?
Jochen
--
Jochen Daum - CANS Ltd.
PHP DB Edit Toolkit -- PHP scripts for building
database editing interfaces.
Comment