i found this in my script to me it seems to be similar to a bbcode and i was woundering if it could be used that way? and if so can someone show me how to do so?
$out = $buffer;
$out = str_replace("<!_-money-_!>", $user_class->money, $out);
$out = str_replace("<!_-formhp-_!>", $user_class->formattedhp, $out);
$out = str_replace("<!_-hpperc-_!>", $user_class->hppercent, $out);
$out = str_replace("<!_-formenergy-_!>", $user_class->formattedenergy, $out);
$out = str_replace("<!_-energyperc-_!>", $user_class->energypercent, $out);
$out = str_replace("<!_-formawake-_!>", $user_class->formattedawake, $out);
$out = str_replace("<!_-awakeperc-_!>", $user_class->awakepercent, $out);
$out = str_replace("<!_-formnerve-_!>", $user_class->formattednerve, $out);
$out = str_replace("<!_-nerveperc-_!>", $user_class->nervepercent, $out);
$out = str_replace("<!_-points-_!>", $user_class->points, $out);
$out = str_replace("<!_-level-_!>", $user_class->level, $out);
$out = str_replace("<!_-hospital-_!>", $hospital, $out);
$out = str_replace("<!_-jail-_!>", $jail, $out);
$out = str_replace("<!_-mail-_!>", $mail, $out);
$out = str_replace("<!_-events-_!>", $events, $out);
$out = str_replace("<!_-effects-_!>", $effects, $out);
$out = str_replace("<!_-cityname-_!>", $user_class->cityname, $out);
return $out;
}