stuperfied
January 26th, 2003, 11:45 PM
I require a way of trasnsfering form data between forms on seperate pages does anyone know how this is done?
collideous
January 27th, 2003, 12:26 AM
Originally posted by stuperfied
I require a way of trasnsfering form data between forms on seperate pages does anyone know how this is done?
It depends on what you got available on the server these pages are hosted. If a server-side scripting language like PHP, ASP, or CFML is available, I'd use it.
If not, you could do it on the client-side with JavaScript. That's not the best solution though. If a visitor to your site has JavaScript turned off in his browser it won't work.
If you can use PHP on your server, and you need help, just contact me.
stuperfied
February 10th, 2003, 04:34 AM
I thought that since this thread was still here I might as well make it usefull and I suspect that a lot of users would be gratefull of having a HTML room to goto when they need support.
To start it off I have a usefull code snippet to present and I will give three examples of it's usefullness.
1. <META HTTP-EQUIV="refresh" CONTENT="0;> //Refresh the current page constantly
2. <META HTTP-EQUIV="refresh" CONTENT="10; URL=index.htm"> //Send user to index.htm after 10 sec's
3. <META HTTP-EQUIV="refresh" CONTENT="20; URL=myholidayphotos.htm"> //Send user to myholidayphotos.htm after 20sec's