Hi everyone,
I have a form field name zip code which is a number text field (element_6_5). When submitted, the page is redirected to a 2nd machform carrying over the values using url parameters. my url string is:
http://mywebsite.com/mypage.php?id=11376&element_6_5={element_2}
If you type in the value 01234 into zip code (element_6_5), the 0 gets dropped when it is sent to the 2nd page.
Im assuming that php is seeing the 0 as an integer and thats why it's dropping it. not sure how to convert it to a string and pass that in the url parameter to the 2nd form.
Anyone have any idea on how this can be fixed?
thanks.