Is there any way to refresh div by using php (no javascrip, jquery, ajax...). Without reloading my page.
I tried this but it reloads complete page.
<?php
$page = $_SERVER['PHP_SELF'];
$sec = "5";
?>
<meta http-equiv="refresh" content="<?php echo $sec?>;URL='<?php echo $page?>'">
?>