Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a json file and show the data as a list with the input fields everything can be edited and if save is clicked, i want to override the json file with the new data

have the following markup

   <ul id="sortable">
      <li>
         <input class="jahr" type="number" value="2010" placeholder="Jahr">
         <input class="titel" type="text" value="testtitel" placeholder="Titel">
         <input class="delete" type="button" value="löschen">
     </li>
      <li>
         <input class="jahr" type="number" value="2012" placeholder="Jahr">
         <input class="titel" type="text" value="testtitel2" placeholder="Titel">
         <input class="delete" type="button" value="löschen">
     </li>
   </ul>

now i want to save the data in a json file, so i have the following jquery code

var erfolge = [];

$('#sortable').children().each( function(){
    erfolge.push({titel : $(this).find('.titel').val(), jahr: $(this).find('.jahr').val()});                
});

$.ajax({
   type: "POST",
    url: "erfolge_speichern.php",
    dataType: 'json',
    data: { json: erfolge }
});

and the php file looks like this:

<?
$json = $_POST['json'];

$file = fopen('../json/erfolge.json','w+');
fwrite($file, json_decode($json));
fclose($file);
?>

when i look at the post data with firebug it looks like this

json[0][jahr]   2010
json[0][titel]  testtitel
json[2][jahr]   2012
json[2][titel]  testtiel2

the json file is then empty

Thanks in advance!

share|improve this question
echo the $json object individually and with json_decode and try to find out what it contains. – Kundan Singh Chouhan Aug 16 '12 at 17:04
$json is an array, json_decode($json) is NULL – oliverspies Aug 16 '12 at 17:08
I had this same issue before. It's because PHP's json_decode function is very strict on how the json should be formatted. Try echo $json, and let us know what you get. – Hassan Aug 16 '12 at 17:12
$_POST['json'] is an array, so instead of json_decode($json); i used json_encode($json); now it works! there is a problem with the special characters, but thats another story ... – oliverspies Aug 16 '12 at 17:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.