Answers for "php parse json to mysql"

PHP
19

php parse json

$personJSON = '{"name":"Johny Carson","title":"CTO"}';

$person = json_decode($personJSON);

echo $person->name; // Johny Carson
Posted by: Guest on July-01-2019
0

parse json phph

echo json_decode("[1,2,3]")[0];
Posted by: Guest on January-15-2020
-1

php mysql row to json

$sth = mysqli_query($conn, "SELECT ...");
$rows = array();
while($r = mysqli_fetch_assoc($sth)) {
    $rows[] = $r;
}
print json_encode($rows);
Posted by: Guest on December-26-2020

Browse Popular Code Answers by Language