How can i know how many characters are there in a string?
for example: $a = "report";
should return 6.
maybe try the manual and look for:
strlen()
$a = strlen($my_string);
rinjani
$my_string = "1234567890"; $count = mb_strlen($my_string);
Outputs --> 10
saw this somewhere, not sure if it works ...