<?php
//Opera 9
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']) && ($_GET['id']==|| $_GET['id']==2)) {
    
$id $_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 1</title>
</head>
<body>
    <p id="<?php echo $id?>"><?php echo htmlspecialchars($content,ENT_QUOTES); ?></p>
</body>
</html>