I have this situation.
file.html
.......
<div id="mydiv">
</div>
.......
myjsfile.js
............
$("#mydiv").load("myphpfile.html");
............
myphpfile.html
............
<?php
include("myfile.php");
?>
............
The content of myphpfile.php is not viewed. How can I show the content of myphpfile.php in selected div?
Thanks.