Android Question How to read Json from B4a to php?

Pravee7094

Active Member
Hello All,
we used below coding convert to json using DBUtils
B4X:
        gen.Initialize(DBUtils.ExecuteJSON(Main.gs_sql, _
                "select mobileregistrationpk,fullname,mobilenumber,password,regstatus,keyvalue,sentstatus,updateon from co_mobile_registration where sentstatus = 'N'", _
                Null, 0, _
                Array As String(DBUtils.DB_TEXT, DBUtils.DB_TEXT, DBUtils.DB_TEXT,DBUtils.DB_TEXT,DBUtils.DB_TEXT, DBUtils.DB_TEXT, DBUtils.DB_TEXT,DBUtils.DB_INTEGER)))
Its works fine. and we got following output.
JSON:
    {
        "root":
        [
            {
                "regstatus":"M"
                "mobilenumber":"8888"
                "updateon":"1611920526063"
                "mobileregistrationpk":"1234"
                "keyvalue":"null"
                "sentstatus":"N"
                "password":"password" 
                "fullname":"siva"
            }
        ]
    }

question is How to read this json data in php?
Any suggestion?

Regards
Praveen
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…