Here is a problem:
To redirect a link we could use this:
Code: Select all
header("Location: http:/www.algirdas.com/index.html?merchant_account_id=223");How to do same thing with POST method, like form posting ?
I tried this but it does not work:
Code: Select all
header("POST /index.html HTTP/1.1");
header("Host: www.algirdas.com");
header("User-Agent: Mozilla/4.0");
header("Content-Length: 23");
header("Content-Type: application/x-www-form-urlencoded");
print("merchant_account_id=223");