How to parse in jQuery the ajax success from PHP json_encode?

How to parse in jQuery the ajax success from PHP json_encode?

What is the shortest solution for the following two files?

I want to parse all of them into
('#parsehere").html( ????    );



[json.php]


<?php

$arr = array("Apple", "Banana", "Lemon");
echo json_encode ($arr);

?>

[parse.php]
<?php
        .............
     success(data){fucntion()
            ('#parsehere").html( ????    );

     }

?>