PHP Bu kod CURL lib kullanarak bir Django uygulaması için bir HTTP POST gönderir.
Ben bu kod POST gönderir ki gerekir ama göndermek aynı sayfaya yönlendirme. Gibi basit bir form yok.
PHP-Kodu:
$c = curl_init();
curl_setopt($c, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($c, CURLOPT_URL, "http://www.xxx.com");
curl_setopt($c, CURLOPT_POST, true);
curl_setopt($c, CURLOPT_POSTFIELDS, 'Var='.$var);
curl_exec($c);
curl_close ($c);
Bu durumda, PHP, HTTP POST gönderiyor, ancak sayfaya yönlendirme değildir. O sonuç yazdırıyor. Benim URL hâlâ. Php değil Django / url /
Ben yapar HTML, basit bir form gibi Post ile django URL'ye yönlendirilecektir gerekir.
Herhangi bir fikir?
Teşekkürler.