Jak w temacie.. Czy istnieje możliwość wysłania danych z formularza na GG?
Wiem, że na gg wysyła się wiadomość "gg://numer?text=tekst", jednak nie wiem jak tego użyć z formularzem...
<?php $hand = curl_init(); curl_setopt($hand, CURLOPT_URL, 'gg://numer'); curl_setopt($hand, CURLOPT_POST, 1); curl_setopt($hand, CURLOPT_POSTFIELDS, 'text=tekst'); curl_exec($hand); curl_close($hand); ?>