CanMan2004 Posted July 13, 2006 Share Posted July 13, 2006 Hi allI have a form which a user can submit, when they submit the form, it directs them to a secure server. I have been told that I need to switch it from client posting (like it currently does) to server posting, so that the server does the posting of the form.Can anyone shed any light on this and how it can be done?Thanks in advanceDave Quote Link to comment https://forums.phpfreaks.com/topic/14494-server-posting/ Share on other sites More sharing options...
kenrbnsn Posted July 13, 2006 Share Posted July 13, 2006 What method do you use in your form?Ken Quote Link to comment https://forums.phpfreaks.com/topic/14494-server-posting/#findComment-57375 Share on other sites More sharing options...
CanMan2004 Posted July 13, 2006 Author Share Posted July 13, 2006 I use GET Quote Link to comment https://forums.phpfreaks.com/topic/14494-server-posting/#findComment-57649 Share on other sites More sharing options...
kenrbnsn Posted July 14, 2006 Share Posted July 14, 2006 They probably want you to switch it to the "post" method so that the form data does not get placed on the URL. In the processing script just change all references to the $_GET array to be $_POST.Ken Quote Link to comment https://forums.phpfreaks.com/topic/14494-server-posting/#findComment-57663 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.