Add, Update, Delete and Read JSON Data/File usingPHP
Add, Update, Delete and Read JSON Data/File usingPHP
jsonResultSet.json [ { âIDâ: â1â, âNameâ: âRam â, âSportsâ: âBase Ballâ }, { âIDâ: â2â, âNameâ: âlibero Ramâ, âSportsâ: âSoccerâ }, { âIDâ: â3â, âNameâ: âkumarâ, âSportsâ: âTennisâ } ] Read JSON File in PHP <?php $data = file_get_contents(âjsonResultSet.jsonâ); $json_array = json_decode($data, true); foreach ($json_array as $key => $value) { echo $json_array[$key] . â â â .âŚ
View On WordPress












