Copy a field content
3 posts by 2 authors in: Forums > CMS Builder
Last Post: August 18, 2019 (RSS)
By andreasml - August 18, 2019
Hi
I have a section containing, among others, a field named "surname"
I am trying to present the value of the field "surname" on a separator on the same record and I use the following code which does not work:
<?php
echo $surname;
?>
Obviously I am missing something.
Could you please give a hint?
Kind regards,
Andreas Lazaris
By Deborah - August 18, 2019
Andreas, try this in the separator:
<?php echo (@$RECORD['surname'] ) ?>
~ Deborah