Smitro Posted September 16, 2008 Share Posted September 16, 2008 It possible to use "_INetGetSource" to get the source of the a page. But, I'd like to also send POST and GET variables to help generate the page. GET variables are easy because you can just add them onto the address line, but how do you add POST variables? Is this possible, or is there another function I can use? Link to comment Share on other sites More sharing options...
tr1px Posted September 17, 2008 Share Posted September 17, 2008 If a form on a page uses POST method you can send them the same way as the GET method. In other words if you have a form that has 2 fields and a submit button and the tag "form action=somepage.php method=post" to send post variables you would do the same as GET somepage.php?variable=whatever. It will work. Link to comment Share on other sites More sharing options...
Smitro Posted September 18, 2008 Author Share Posted September 18, 2008 If a form on a page uses POST method you can send them the same way as the GET method. In other words if you have a form that has 2 fields and a submit button and the tag "form action=somepage.php method=post" to send post variables you would do the same as GET somepage.php?variable=whatever. It will work.Thanks, surprisingly it work! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now