I am using PHP and using the below line of code for redirection but the time page goes blank is there anything update or am I making any mistake please help me. This only happens in Tablets.
<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">
redirect in php
<?php
header("Location: https://google.com");
die();
?>
or if you really want just to reload the current page .this code reload it every 5 seconds
<?php
header("Refresh:10");
die();
?>