Well if I check your piece of code then you don't need those 3 lines at all:
PHP Code:
$hitquery = $db->query_first( "select hits from redirect where url = '$drc_url'");
$result = mysql_query($hitquery);
$hits = mysql_result($result, 0, "hits");
They provide no functionality whatsoever.
query_first returns an array of the data from the first row by the way, so you can just use $hitquery['hits'].