I've got a webpage that works with includes (I didin't build it but I'm working on it now), the thing is that the admin page in which I had to make an addition had by default an include into a certain gif which im gonna insert in a picture, that's the whole div that matters , I want to know if there is a way to include the new content I made and include it into that same div so I don't need to reload the whole page.
the piece of code cantaining the default include which isn't commented and the one i wanna add is the one commented
<div id="content-wrapper">
<div class="row" style="opacity: 1;">
<div class="col-lg-12">
<div id="container" class="container" width="100wv" height="100wv">
<?php
include 'solicitudlst.phi';
//include 'pruebaPHP.php';
?>
<script>
</script>
<div class="row">
<div class="col-lg-12">
</div>
</div>
<?php
include 'footer.phi';
?>
</div>
</div>
</div>
</div>
the commented include is the new one I want to add, and the other one is the one that was by default.