You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#1613 the Validation Library @ Check If Error Exists.
You have:
Check If Error Exists
You can check to see if an error exists with the hasError() method. The only parameter is the field name: if ($validation->hasError('username') { echo $validation->getError('username'); }
The code is missing the last parentheses in if statement.
Should be:
if ($validation->hasError('username')) { echo $validation->getError('username'); }
The text was updated successfully, but these errors were encountered:
#1613 the Validation Library @ Check If Error Exists.
You have:
Check If Error Exists
You can check to see if an error exists with the hasError() method. The only parameter is the field name:
if ($validation->hasError('username') { echo $validation->getError('username'); }
The code is missing the last parentheses in if statement.
Should be:
if ($validation->hasError('username')) { echo $validation->getError('username'); }
The text was updated successfully, but these errors were encountered: