I need update only a part of the page where its included an include php with a specific path. How update only this file included with this include.
Code is this:
<tbody>
<?php include_once "tabelas/table.php"; ?>
</tbody>
What I am doing in really is calling a function javascript that do update and it do update, but it not do update in this include php. Thanks advance!
(i dont want do require in ajax because it is a datatable and in this case it just work with include php, so i need a solution in php preferenly)