I am creating an app for the company I work for. I need to pass data from the app (SWIFT) to PHP. The problem is the data I am passing is dynamic and can change. Heres an example
http://www.website.com/inventory.php?variable=data&variable=data
There are going to be different variables (up to 300). The names of the variables will change
How do I get all variables passes in php without necessarily knowing the names of them?
Is this possible? Thanks.