I have absolutely no idea where to start.
I have a table called "users" in my database called "database":
NAME | POINTS
John 24
Marrie 32
Moritz 11
Adam 99
Hans 34
Monica 58
I also have this
    <?php
    $users = array("Adam", "Hans", "Monica");
    ?> 
What I would like to do is: Connect to mysql table "users" then database called "database", search for the names mentioned in the array $users and give me the list of their points (without names).
SO it should echo
99
34
58
 
    