<?php
//Firefox 2
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']);
}
if(!
eregi('^[a-z[:space:]]*$',$id) || !eregi('^[a-z[:space:]]*$',$content)) {
    
$id $content 'default';
}
?>
<html>
<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <title>Test 2</title>
</head>
<body>
    <p id="<?php echo $id?>"><?php echo $content?></p>
</body>
</html>