Contact: aviboots(AT)netvision.net.il
39,948 questions
51,890 answers
573 users
$ch = 'z'; if (!(ord($ch) >= 32 && ord($ch) <= 126)) { echo "$ch - Not in range"; } $ch = 'έ'; if (!(ord($ch) >= 32 && ord($ch) <= 126)) { echo "$ch - Not in range"; } /* run: έ - Not in range */