Support

Account

Home › Forums › Front-end Issues › if field has value within Field Group conditional statement › Reply To: if field has value within Field Group conditional statement

  • $x .= ' add this text'

    is shorthand for

    $x = $x . ' add this text

    In PHP anything that can be done the second way can be done the first, +=, -=, *=, etc.