Im running a website for a client which is accessed when a get string is passed to it, I just received their new link, and there are 5 things I need to pull from the link. one of the items is an ID, so the get string would look like this normally:
www.website.com/index.php?id=1232352346
which is how it was being sent before, however this newest one has it set up like this:
www.website.com/index.php?id=2345134&123461
what Im wondering is if I pull that id in like so
$id=htmlspecialchars($_GET["id"], ENT_QUOTES);
will it have just the number before the second & (ex: 2345134) or will it have the entire thing (ex: 2345134&123461)?