Answers for "php header location not working"

PHP
0

php header location not working

// If header throws an error - use this as temp solution.
<?php
echo '<script type="text/javascript">
location.replace("https://your_replaced_url_location_goes_here.com/"); </script>';
?>
Posted by: Guest on September-02-2021
2

php location header not working

header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file, or from PHP
Posted by: Guest on November-03-2020

Browse Popular Code Answers by Language