header("Content-Type: text/plain"); echo "<b>hello world</b>"; // Displays in the browser: <b>hello world</b> header("Content-Type: text/html"); echo "<b>hello world</b>"; // Displays in the browser with bold font: hello world