Answers for "set header content type in php"

PHP
2

header location in php

/*
This will just redirect you to example.com
*/

<?php
$url = "https://example.com";
header("Location: $url");  
exit;
?>

/* I hope it will help you. Namaste */
Posted by: Guest on May-07-2020

Browse Popular Code Answers by Language