Ah ... hmmmm .... just patch strings together ?

How about building an array of strings and patch them together with the JOIN() function ?

silly sample :



break on

dim $a[2]

$a[0] = "this is the "
$a[1] = "result of "
$a[2] = "join() ..."

$patch = join($a)

$patch

get $



hth
J.
_________________________