Quantcast
Channel: DataTables 1.10 — DataTables forums
Viewing all articles
Browse latest Browse all 2364

How do I parse incoming data from very large json (114000+ data)

$
0
0

I made the data in mysql databases come quickly using datatables I need to parse this data, it is very heavy when I do it with mysql

data at this link
https://www.kupondas.xyz/oran/

The datatables json part comes from here

https://www.kupondas.xyz/oran/scripts/ids-objects.php

Unfortunately, the link does not even open because it is too big

how can i parse it between all data in the fastest way?

there is a total of 114,000 + data

How do I do a filtering like this in php, as in the example images and codes?

The code below unfortunately did not work

$json2 = file_get_contents('https://www.kupondas.xyz/oran/scripts/ids-objects.php');
$json_data = json_decode($json2,true);
foreach($json_data["data"] as $v){

    if($v["lig"]=="GUR" and $v["ms1"]=="3.00"){
        echo "<pre>";
        print_r($v);    

    }
}

Viewing all articles
Browse latest Browse all 2364

Trending Articles