Prima di tutto devi "includere" correttamente il tuo parametro nella stringa
'SELECT count(*) FROM tble_name WHERE id='.$try;
In secondo luogo, devi passarlo a oggetto mysqli
$result = $mysqli->query('SELECT count(*) FROM tble_name WHERE id='.$try);
Quindi devi recuperare il risultato
while ($row = $result->fetch_row()) {
/* your logic here */
}
Ovviamente devi creare un nuovo mysqli
obiettare correttamente, come spiegato nel link che ti ho fornito.