For the last several years I have been coding ASP pages in VBScript. This last month I have been turning to PHP and not looking back.
I am finding myself pleasantly surprised at how fast I am picking this up... but my problem comes down to Making the one work with the other while I transition over 25 seperate programs from ASP to PHP....
Not an easy task....lol
Anyways, while I do this transition the old programs must continue to work... so now I am working with the cookies built by my ASP pages.
When I need to pull my cookies in the past I would use:
Request.Cookies("Employees")("FirstName")
Request.Cookies("Employees")("LastName")
I store several different values in a kind of mini library in the cookie.
Now how do I pull my cookies that contain more than one value?
For instance how would I pull just the FirstName? or Pull just the LastName?
I hope my question is not too terrible confusing.
Thank you again for reading this.