I have a textfield in a form and the name of the textfield is textfieldName4
If I type 'myroadname' in the textfield everything works fine. But if I type 'myroadname 2A' I only get 'myroadname' left when I recieve the value on the other page. Everything after the space seems to just dissapear. Here is the code that I use for sending the hidden field.
echo'<input type="hidden" name="value5" value='.$_POST['textfieldName4'].'>';