| \n");
$test = $_POST["test"];
?> The forums supports a number of BB tags which you can embed to modify how your posts are displayed.if ($test != "")
  print(" " . format_comment($test) . "
 \n");
insert_tag(
	"Bold",
	"Makes the enclosed text bold.",
	"[b]Text[/b]",
	"[b]This is bold text.[/b]",
	""
);
insert_tag(
	"Italic",
	"Makes the enclosed text italic.",
	"[i]Text[/i]",
	"[i]This is italic text.[/i]",
	""
);
insert_tag(
	"Underline",
	"Makes the enclosed text underlined.",
	"[u]Text[/u]",
	"[u]This is underlined text.[/u]",
	""
);
insert_tag(
	"Color (alt. 1)",
	"Changes the color of the enclosed text.",
	"[color=Color]Text[/color]",
	"[color=blue]This is blue text.[/color]",
	"What colors are valid depends on the browser. If you use the basic colors (red, green, blue, yellow, pink etc) you should be safe."
);
insert_tag(
	"Color (alt. 2)",
	"Changes the color of the enclosed text.",
	"[color=#RGB]Text[/color]",
	"[color=#0000ff]This is blue text.[/color]",
	"RGB must be a six digit hexadecimal number."
);
insert_tag(
	"Size",
	"Sets the size of the enclosed text.",
	"[size=n]text[/size]",
	"[size=4]This is size 4.[/size]",
	"n must be an integer in the range 1 (smallest) to 7 (biggest). The default size is 2."
);
insert_tag(
	"Font",
	"Sets the type-face (font) for the enclosed text.",
	"[font=Font]Text[/font]",
	"[font=Impact]Hello world![/font]",
	"You specify alternative fonts by separating them with a comma."
);
insert_tag(
	"Hyperlink (alt. 1)",
	"Inserts a hyperlink.",
	"[url]URL[/url]",
	"[url]http://www.google.nl/[/url]",
	"This tag is superfluous; all URLs are automatically hyperlinked."
);
insert_tag(
	"Hyperlink (alt. 2)",
	"Inserts a hyperlink.",
	"[url=URL]Link text[/url]",
	"[url=http://www.google.nl/]Google[/url]",
	"You do not have to use this tag unless you want to set the link text; all URLs are automatically hyperlinked."
);
insert_tag(
	"Image (alt. 1)",
	"Inserts a picture.",
	"[img=URL]",
	"[img=http://$BASEURL/pic/logo.gif]",
	"The URL must end with .gif, .jpg or .png."
);
insert_tag(
	"Image (alt. 2)",
	"Inserts a picture.",
	"[img]URL[/img]",
	"[img]http://$BASEURL/pic/logo.gif[/img]",
	"The URL must end with .gif, .jpg or .png."
);
insert_tag(
	"Quote (alt. 1)",
	"Inserts a quote.",
	"[quote]Quoted text[/quote]",
	"[quote]The quick brown fox jumps over the lazy dog.[/quote]",
	""
);
insert_tag(
	"Quote (alt. 2)",
	"Inserts a quote.",
	"[quote=Author]Quoted text[/quote]",
	"[quote=John Doe]The quick brown fox jumps over the lazy dog.[/quote]",
	""
);
insert_tag(
	"List",
	"Inserts a list item.",
	"[*]Text",
	"[*] This is item 1\n[*] This is item 2",
	""
);
insert_tag(
	"Preformat",
	"Preformatted (monospace) text. Does not wrap automatically.",
	"[pre]Text[/pre]",
	"[pre]This is preformatted text.[/pre]",
	""
);
end_frame();
end_main_frame();
?>
stdfoot();
?>
 |