This question already has an answer here:
- require/include into variable 9 answers
I have 2 echo's from a php script that are sent as json to the ajax call. These 2 echos will be outputted in 2 different divs. For those 2 echo's , I created an array like below:
$result = [
"one" => "this is echo 1",
"two" => "this is echo 2"
];
echo json_encode($result);
Instead of these echo's, I now want to include 2 files (which will be the echos). Sow can I do that?
So what I want is something like this:
$result = [
"one" => include('success.php'),
"two" => include('renderfiles.php')
];
How can I do this?
By the way, this is my jquery ajax:
$.ajax({
url: "",
type: "post",
data: new FormData(this),
dataType: 'json',
contentType: 'application/json',
success: function(data) {
$('.echo').html(data.one); // content ofinclude success.php should come here
$('.table-content').html(data.two); // content of include renderfiles.php should come here
</div>