$.post. . JSON, JavaScript.
$.post(
"file.php",
{ file_id: $(this).val() },
function(data){ $('#title').val(data.title); $('#para').val(data.paragraph); },
'json');
file.php -
<?php
$return_data=array('title'=>'Fishes Go To Market','paragraph'=>'Lots of stuff');
header('Content-Type: application/json');
echo json_encode($return_data);
exit();
(), jQuery , JSON, json_encode, .
. json_encode docs . , - () json_encoded , , JSON .