I'm tying to send POST data from one site to another (both sites have been developed by us). The problem is that the POST variables are not available if the page is requested from another domain. Even if I test it locally, but specify the complete url, the POST data is gone.
Yani, bu iş olacak:
<form method="POST" action="test.php">
Ama bu olmayacak:
<form method="POST" action="http://example.com/test.php">
İşte sayfa için HTML:
<html>
<head>
<title></title>
</head>
<body>
<form method="post" action="http://example.com/test.php">
<input type="text" name="request" value="" id="" />
<input type="submit" value="" id="" />
</form>
</body>
</html>
Ben bu çalışması gerektiğini aldım önerilerden sonra, başka bir sunucu üzerinde test edilmiş ve her şey gerçekten ince orada çalıştı. Bu ilk sunucu https gerçeği ile ilgisi etkindir olabilir. Bu durumda eğer Ama garip geri bilgi olsun ama bu sadece POST veri eksik gitti bulmak.