I can't display the value of Fieldset Text.

Support General I can't display the value of Fieldset Text.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #9297
    ImanIman
    Participant

    Error :

    Warning: Illegal string offset 'name' in

    #9299
    ImanIman
    Participant

    Problem solved.

    This doesn't work:

    foreach ( $values as $clone ) {
        foreach ( $clone as $value ) {
            echo $clone['name'];
        }
    }

    I'm doing just this way:

    foreach ( $values as $clone ) {
        echo $clone['name'];
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘I can't display the value of Fieldset Text.’ is closed to new replies.