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

Using the meta refresh tag for redirection in PHP can cause accessibility issues for users with disabilities or those using screen readers, as the redirection happens automatically without user interaction. To solve this issue, you can use PHP header() function to perform the redirection instead.

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