Good morning It's my first post and it's simply because I do not know what else to do: c The issue is that I have a web services where I make a query to a database from php and I get a json of the type String something like this.
[{"id":"1","usuario":"admin","clave":"admin","nombre":"Juan","apellido":"Sepulveda","edad":"25"}][{"id":"2","usuario":"user","clave":"123456","nombre":"Jose","apellido":"Gonzalez","edad":"34"}][{"id":"3","usuario":"rowso","clave":"rowso","nombre":"Juanito","apellido":"Sepulveda","edad":"25"}][{"id":"4","usuario":"nuevo","clave":"123","nombre":"nuevo","apellido":"yourmeh","edad":"58"}][{"id":"5","usuario":"","clave":"","nombre":"","apellido":"","edad":"0"}]
I need to be able to parse those data obtained to be able to use them freely for example.
get user: admin to assign it some variable.
I do not know how to do it if you transfer it to an arrangement and then take it 1 to one or something like that.
Thank you very much