Hello,
I’m getting data with json using ajax to parse the data, no problem here
There is a page function where I get data with ajax
page_ajax.php
function goster($variable){
$jsonData = array(
"index1" => $tablo, "index2" => $statu,
);
echo json_encode($jsonData);
}
This function creates a separate table for each brand and the json is formed as follows
{"index1":"tables","index2":"1"}{"index1":"tables","index2":"1"}
If this json data is single, it works fine
Note: Is it possible to do something in the ajax code when there is no such thing as merging this data into the page_ajax.php page?
Thank you