how do i ask for multiple results in a mysql query.
ex: $query = "select * from $table where id='1'";
there i asked in the query for it to retrieve all of the rows in the database where the id is 1. how would i ask it to give back multiple things like in one query statement ask it to give me back all rows where id='1' and id='3' and id='6' just as an example.
plz help =(