Показать сообщение отдельно
  #5 (permalink)  
Старый 30.05.2012, 11:29
Новичок на форуме
Отправить личное сообщение для Alexonus Посмотреть профиль Найти все сообщения от Alexonus
 
Регистрация: 03.01.2012
Сообщений: 6

У меня есть вот такой пример:
$url = "http://192.168.1.1/?l2=1";  
$ch = curl_init();  
curl_setopt($ch, CURLOPT_URL,$url); // set url to post to  
curl_setopt($ch, CURLOPT_FAILONERROR, 1);  
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);// allow redirects  
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); // return into a variable  
curl_setopt($ch, CURLOPT_TIMEOUT, 3); // times out after 4s  
curl_setopt($ch, CURLOPT_POST, 1); // set POST method  

$result = curl_exec($ch); // run the whole process  
curl_close($ch);


как бы его связать с чекбоксом ?
Ответить с цитированием