shlomikalfa Posted September 12, 2007 Share Posted September 12, 2007 i know i can apply the GET method on any php page by adding a '&varname=value' to it's address, however how can one reach the POST method from an external program ?! any help will be appreciated - THANKS. Quote Link to comment https://forums.phpfreaks.com/topic/69101-post-methode-from-an-external-application-how/ Share on other sites More sharing options...
colombian Posted September 12, 2007 Share Posted September 12, 2007 What do you mean by external application? another website? A different page? The POST is dependent on wherever the original form comes from. If that form is set up as GET, you cannot do anything about it. If the original form is set up as post, you'll need the name of the fields being passed and retrieve them with: $yourVarName =$_POST['form_var']); You can then call $yourVarName from anywhere. Quote Link to comment https://forums.phpfreaks.com/topic/69101-post-methode-from-an-external-application-how/#findComment-347375 Share on other sites More sharing options...
shlomikalfa Posted September 13, 2007 Author Share Posted September 13, 2007 i'm programming in VB and i'd like to SEND DATA TO A PHP PAGE ! - but i wish to send it via the POST methode and not the GET methode... any advice ?! Quote Link to comment https://forums.phpfreaks.com/topic/69101-post-methode-from-an-external-application-how/#findComment-347677 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.