Hi,
Not sure if this is even possible :
some of the fields on my form get pre-filled depending on choices that are made, but one of the fields still need some user interaction to complete the desciption.
E.G This part is XXXm long
I’d like to change the font colour for the XXX part to ensure the user needs to update it.
I’ve tried
$LVAR_shipping_description = {rs[0][1]};
$keyword = “XXX”;
$LVAR_shipping_description = preg_replace("/($keyword)/i","" . chr(34) . “<b>” . chr(34) . “$1” . chr(34) . “</b>” . chr(34) . “”,$LVAR_shipping_description);
thinking this would spoof the php, but it doesn’t work.
Any ideas ?
cheers