right now I have something like:
$lang[0] = text0;
$lang[1] = text1;
$lang[2] = text2;
is there a way to auto sequence the numbers, like say instead of having to manually number each one, i would instead do something like
$lang[0] = text0;
$lang[+1] = text1;
$lang[+1] = text2;