$kw = 'MyCustomWord';
$tags = array(
'pre',
'textarea',
'kbd',
'caption',
'small',
'code',
'strong',
'sub',
'u',
'center',
'cite',
'big',
'font',
'em',
'title',
'body',
'samp',
'acronym',
'span',
'del',
'strike',
'ins',
'sup',
'dfn',
'p',
'legend',
'button',
'abbr',
'address',
'blockquote',
'caption',
'div',
'tt',
'h3',
'dt',
'h1',
'i',
's',
'keywords',
'h2',
'description',
'author',
'b',
'h4',
);
//echo count($tags);
$tag = $tags[(int) $_GET['tag']];
$head = '';
$body = '';
switch ($tag) {
case 'title':
$head = "<$tag>$kw</$tag>";
break;
case 'keywords':
case 'description':
case 'author':
$head = '<meta name="' . $tag . '" content="' . $kw . '" />';
break;
case 'body':
$body = "$kw";
break;
default:
$body = "<$tag>$kw</$tag>";
break;
}