Skip to content

Instantly share code, notes, and snippets.

@XxAnonimeKxX
Last active June 26, 2020 14:39
Show Gist options
  • Select an option

  • Save XxAnonimeKxX/2966de68eae834842b5ae1d0bf2c757b to your computer and use it in GitHub Desktop.

Select an option

Save XxAnonimeKxX/2966de68eae834842b5ae1d0bf2c757b to your computer and use it in GitHub Desktop.
<?php
class Validate {
public $login;
public function __construct(){
$this->login = $login;
}
}
class Length extends Validate{
public function checkLength(){
if(strlen($this->login) < 5){
echo "login jest za krótki";
}
}
}
?>
<!DOCTYPE html>
<html>
<head>
<title>writers - rejestracja</title>
</head>
<body>
<form action="#" method="post">
<div class="input">
Login: <input type="text" name="login">
</div>
<div class="input">
Hasło: <input type="password" name="password">
</div>
<div class="input">
<input type="submit" value="Wyślij" name="sub">
</div>
</form>
<?php
if(isset($_POST['sub'])){
require_once 'core/init.php';
$v = new Validate;
}
?>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment