Сообщение от
None
concat(email,0x3a,pass) from [prefix]_users where ugroup=1 limit
[
prefix]_users - как у тебя указана в бд. прификс твой.
запрос пост отправить с помощью curl
$ch = curl_init();
//curl_setopt($ch, CURLOPT_PROXY, "1.2.3.4:123"); //если нужен прокси
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_URL, "http://www.site.com/form.php"); //куда шлем
curl_setopt($ch, CURLOPT_POSTFIELDS, "x=231&y=342"); //что шлем
curl_setopt($ch, CURLOPT_REFERER, "http://www.site.com");
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0; MyIE2; .NET CLR 1.1.4322)");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_NOBODY, 0);
$result=curl_exec ($ch);
curl_close ($ch);
echo $result;
и так же посмотри вот эту тему, много полезных программ
/threadnav240692-1-10.html