I would like to check in PHP that if you enter something you need at least 30 characters.
If I run it now I can just keep going if I type nr: 31 for example.
if(empty($_POST['vraag'])) {
$vraagErr = 'Verplicht!';
} else {
$vraag = test_input($_POST['vraag']);
if($_POST['vraag']<"30") { //This is the if instruction
$vraagErr = 'U moet meer dan 30 karakters invullen';
}
}