I am trying to find a single ID from a HTML page i am pulling with cURL. The id is in a url query string that finishes like so:
start_working&locID=12008'
Since that's the only place where that piece of text appears in the html i am guessing thats the pattern we are looking for.
All i need is that locID number.
Like:
preg_match("start_working&locID=".$what_i_want."'")
I am really bad with regex and preg match