The problem is in your select statement. You don't have a column name after the WHERE in your select statement. Probably should look like this
SELECT * FROM users WHERE info LIKE '%searchTerm%'
so in your php it should be:
$sql = "SELECT * FROM users WHERE info LIKE '%$find%'";