You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mysql_connect($servername,$userid,$password) or die ("couldn't connect to MYSQL");
mysql_select_db($database);
$sql = "select q.*, s.score from sm_inq q left join sm_score s on s.screenName = q.uid where s.isTroll <> 'Y' and dealtwith is NULL order by msg_id DESC limit $r";
$result = mysql_query($sql) or die(mysql_error(). $sql);