What are the potential pitfalls of using meta tags for redirecting to a new page in PHP?

Using meta tags for redirecting to a new page in PHP can be unreliable and not recommended as it relies on the client's browser to interpret and execute the redirect. A more reliable and standard way to redirect in PHP is to use the header() function with the Location header.

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