if (strlen($_POST['Text']) < 20)
$lessthantwenty = $_POST['Text']
although if my post string is more than 18 characters it wont follow through.... rather i will need:
if (strlen($_POST['Text']) < 22)
$lessthantwenty = $_POST['Text']
instead to follow through with a 20 character string... is there a reason for this? where are my extra 2 characters coming from?