Smitro Posted September 16, 2008 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?
tr1px Posted September 17, 2008 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.
Smitro Posted September 18, 2008 Author 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!
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