
21/12/2008, 15:55
|
| | Fecha de Ingreso: octubre-2008
Mensajes: 46
Antigüedad: 16 años, 4 meses Puntos: 0 | |
Respuesta: ayuda con bot <html>
<?php
include ('config.php') ;
$query = mysql_query("SELECT * FROM torrents_descargas");
while($row = mysql_fetch_assoc($query)) {
$file = file_get_contents($row['eunico']);
if(stristr($file, 'Invalid')) mysql_query("UPDATE torrents_descargas(status) VALUES('0') WHERE id = '".$row['id']."'");
else mysql_query("UPDATE torrents_descargas(status) VALUES('1') WHERE id = '".$row['id']."'")or die(mysql_error($conectar))or set_time_limit();;
}
?>
<html> |