I have already searched - can't find the answer to this problem.
I am sending a variable to a php page and would like to split it into 2 parts.
Here is the variable I am sending:
page.asp?id=45678911
I want to split this into two parts - first part being the 456789 and the second part being the 11.
The 11 is what I really want. 456789 is a security measure to distract the real id of 11.
In asp this is done like this:
myid1 = split(myid, "456789") and then calling
myid1(0)
HOw can I do it in php?
THanks so much!
Start Free Trial