What are the implications of using a meta refresh for redirecting users in PHP scripts, as seen in the provided code?

Using a meta refresh for redirecting users in PHP scripts can have negative implications such as affecting SEO, causing usability issues, and potentially being flagged as a security risk. It is recommended to use PHP header() function to perform redirects instead.

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