mirror of
https://github.com/e107inc/e107.git
synced 2025-02-11 10:10:40 +01:00
11 lines
280 B
BlitzBasic
11 lines
280 B
BlitzBasic
/* Tag: [textarea name=name&style=style&row=rows&whatever=whatever]value[/textarea] */
|
|
|
|
$tastr = "";
|
|
parse_str($parm, $tmp);
|
|
|
|
foreach($tmp as $key => $p)
|
|
{
|
|
$tastr .= $tp -> toAttribute($key)." = '".$tp -> toAttribute($p)."' ";
|
|
}
|
|
return "<textarea $tastr>$code_text</textarea>";
|