What are the potential issues with using meta refresh in PHP for redirection?

Using meta refresh for redirection can cause problems with SEO, as search engines may not follow the redirect properly. Additionally, it can impact user experience as some browsers may not support meta refresh or may have it disabled. To solve this issue, it's recommended to use PHP header redirection instead.

<?php
header("Location: newpage.php");
exit();
?>