- Автор темы
- #1
Всем привет.
Скажите пожалуйста почему не заполняются формы если делаю GET запрос
по идее поля должны заполниться?
так тож не фурычит
В чем косяк?
Скажите пожалуйста почему не заполняются формы если делаю GET запрос
PHP:
http://ktmz.org/index.php?name=Account&op=newuser&user_name=andreyko&user_email=4534535353@mail.ru&user_password=94435&user_password2=99535
по идее поля должны заполниться?
так тож не фурычит
PHP:
[B] $url = "http://ktmz.org/index.php?name=Account&op=newuser";
$post="user_name=and909o&user_email=w090999@mail.ru&user_password=9999099009&user_password2=656568909";
$ua = 'User-Agent: Mozilla/4.0 (compatible; MSIE 5.01; Widows NT)';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); °Ð*µÐ*ј URL
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_USERAGENT, $ua);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 0);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_COOKIEFILE, $_SERVER['DOCUMENT_ROOT'].'/cookie.txt');
echo $text = curl_exec($ch);
В чем косяк?