split after number of characters?
Posted: Tue Dec 03, 2002 4:41 pm
e.g.
$name = "something defined in url";
if its longer than 16 characters, then i want to split it up into
$name = first 16 characters
$name2 = second 16 characters
etc etc etc
how do i do this?
$name = "something defined in url";
if its longer than 16 characters, then i want to split it up into
$name = first 16 characters
$name2 = second 16 characters
etc etc etc
how do i do this?