Answers for "how to set a header content type for a variable in php"

PHP
0

php set header content type html

// set header to HTML (default)
header("Content-Type: text/html");

// set header to Text
header('Content-type: text/plain');
Posted by: Guest on August-11-2021

Code answers related to "how to set a header content type for a variable in php"

Browse Popular Code Answers by Language