How to transmit arrays between PHP pages through json ?, Simulate post & nbsp; curl --------------------. you can use session or cookie & nbsp; to save the serialized value and retrieve it on another page. how to transmit arrays between PHP pages through json?
How to transmit arrays between PHP pages through json?
------ Solution --------------------
Simulate post
Curl
----------------------
------ Solution --------------------
You can use session or cookie to save the serialized value and obtain it on another page. the simple method is to pass the value through url.
------ Solution --------------------
Json_encode ($ array) json_decode ($ jsonstr)
------ Solution --------------------
Json can be directly stored as a variable. if it is too large, it is recommended to save it to a file.
------ Solution --------------------
Sender json_encode
Receiver json_decode
Json is a string.
Reference:
How to transmit arrays between PHP pages through json?