Gr..I have a really simple problem. I have a form that has different pages, and one of the form spaces, can sometimes call for data such as "Billy Bobs Data". As you can see there are spaces. When I first submit the data that would come out as
http://siteaddress.com/form.php?data=billy+bobs+data
But when I click the next page, only the data before the space gets sent. Example:
http://siteaddress.com/form.php?data=billy
What can I do to make it display
http://siteaddress.com/form.php?ppage=2&data=billy+bobs+data,
instead of
http://siteaddress.com/form.php?ppage=2&data=billy
For the pages, I use a php function that splits the pages, and then I use a normal link to display each page, with the variables at the end.
For the form at the beginning, I use a GET function.
In conclusion, I need to use REGEXP, and I still don't have a clue how to use that.
Either that, or I need to somehow, use the form over and over, but change the page #. And I can't see how I can do that either.
Your Comments: