Contact: aviboots(AT)netvision.net.il
40,891 questions
53,304 answers
573 users
$s = "PHP is a general-purpose scripting language that is especially suited to web development."; $N = 15; if (strlen($s) > $N) $s = substr($s, 0, $N) . "..."; echo $s; /* run: PHP is a genera... */