there is a typo in your query:
selsect --> SELECT
it is common practice and a good idea to write all SQL keywords in capitals.
add this to the query part:
$result = $db_conn->query($query) or trigger_error('Query error: ' . $db_conn->error, E_USER_ERROR);
good that you are using mysqli and not mysql 🙂