<?php
//Internet Explorer 6
header('Content-Type: text/html; charset=utf-8');

error_reporting(E_ALL);
ini_set('display_errors'true);
ini_set('html_errors'true);
ini_set('log_errors'false);

$id $content 'default';
if(isset(
$_GET['id'])) {
    
$id stripslashes($_GET['id']);
}
if(isset(
$_GET['content'])) {
    
$content stripslashes($_GET['content']);
}
?>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>Test 3</title>
</head>
<body>
    <p id="<?php echo htmlspecialchars($id,ENT_QUOTES); ?>"><?php echo strip_tags($content); ?></p>
</body>
</html>