hello:
i was wondering if anyone knows if it is possible to only display the rows that a user has not already selected from mysql?
Example:
// gets game_id's that user has already selected from 'selected_games'
$sql = "SELECT game_id FROM selected_games WHERE user_id = '$user_id'";
// displays game_id's that user has not selected from 'new_games'
$sql = "SELECT game_id FROM new_games WHERE game_id != '$game_id'";
now these will work if there is only one game that has been selected, what if the user has already select 3-4 game_id's aleady.. i dont want them to show. anyone know how i would go about getting this done?