Just out of being bored I decided to share some really basic source code. Here’s how to find the lenght of a text in my three favorite languages:
PHP
$s = "simple php programming"; $length = strlen($s);
JavaScript
var s = "simple javascript programming"; var length = s.length;
(Visual) Basic
dim s as string dim length as integer s = "simple basic programming"; length = len(s);