$sql = "SHOW FULL PROCESSLIST"; 
$result = mysql_query($sql); 

print_r(mysql_fetch_array($result));

//출력되는 array에서 id 값을 가져와 id번호에 넣어준다.
$sql = "KILL id번호";
$result = mysql_query($sql); 

+ Recent posts