Skip to content

Instantly share code, notes, and snippets.

@shzk
Last active May 19, 2018 09:44
Show Gist options
  • Save shzk/a0358973ed4a19d96dae15f304e4e2f1 to your computer and use it in GitHub Desktop.
Save shzk/a0358973ed4a19d96dae15f304e4e2f1 to your computer and use it in GitHub Desktop.
if (trim($_POST['password']) == '') {
$errors[] = "Введите пароль";
}
public static function checkName($name) {
if (strlen($name) >= 2) {
return true;
}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment