What are the potential pitfalls of using the meta-refresh method for redirection in PHP?

Using the meta-refresh method for redirection in PHP can have potential pitfalls such as affecting SEO rankings, causing accessibility issues, and impacting user experience. It is recommended to use PHP header redirection instead, as it is more efficient and reliable.

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