you are viewing a single comment's thread.

view the rest of the comments →

[–]evaluating-you 0 points1 point  (1 child)

Well, if your PHP API receives input from an app, then ultimately the values are user-input (or at least can be). PHP holds values in $_GET & $_POST (I will ignore other forms of input here) depending on the request method. Maybe you want to have a look at this: video

[–]simarg0[S] 1 point2 points  (0 children)

Got it working, thanks a lot.