I'm sending variables from page to page using hidden text fields. Everything is sent properly until I get to the third page (it's an ecommerce site) and on the third page, only the first word of the contents of each variable is displayed. The hidden text fields are inside if a PHP print function... IE
print "Some regular text here: $variable1 more regular text: $variable2
<form>
<input type=hidden value=variable1>
<input type=hidden value=variable2></form>";
So if on the first page "United States" is entered, by the time I get to the third page only "United" appears.
Any ideas??