Jajajaj, eso les pasa por ir de listos...
Saludos
Saludos
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes Menú
class PHPBot {
function PHPBot (){
$this->ch = curl_init();
$ch = $this->ch;
curl_setopt($ch, CURLOPT_HEADER, 1); // Include headers in response or not
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Return (don't print) answer of exec
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.12) Gecko/2009070611 Firefox/3.0.12");
curl_setopt($ch, CURLOPT_AUTOREFERER, true); // Isn't this great?
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Accept: */*', 'Accept-Language: en-us,en;q=0.5', 'Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7'));
}
private function act($url, $params = false){
$ch = $this->ch;
curl_setopt($ch, CURLOPT_URL, $url);
if ($params != false){
curl_setopt($ch, CURLOPT_POSTFIELDS, $this->myurlencode($params));
curl_setopt($ch, CURLOPT_POST, 1);
}
else
curl_setopt($ch, CURLOPT_POST, 0);
$r = curl_exec($ch);
return $r;
}
private function myurlencode($dict){
$r = "";
foreach($dict as $key => $value)
$r = $r.urlencode($key).'='.urlencode($value).'&';
return $r;
}
private function get_urls($context){
$query = '/http?\:\/\/[^\" ]+/i';
preg_match_all($query,$context,$result);
return $result[0];
}
function get ($url){
return $this->act($url);
}
function post($url, $params){
return $this->act($url, $params);
}
}
body {
width:1024px;
height:765px;
}
body {
width:99%;
}
<a href="link a tu perfil en la red social" title="Mi perfil" target="_blank">
<img src="ruta_del_icono.jpg" alt="" />
</a>