-3

I'm getting syntax error, unexpected '{' in the following line:

} elseif (!preg_match('/^[a-zA-Z ]*$/',$msz['letters']) {

What am I missing here?

Akshay
  • 3,558
  • 4
  • 43
  • 77
invvsz
  • 1
  • 1

1 Answers1

1

You're missing a closing ) after $msz['letters'].

Sebastian
  • 526
  • 2
  • 15