So I have the url:
php?id=1
and I currently use
$id = $_GET['id'];
$tPerson_SQLselect = "SELECT FROM jobList WHERE id = '$id'"
And this works fine.
However I am unsure what do when I have the url:
php?id=1,2
and I want to get and then filter for id= 1 and 2
Many thanks