This is probably an easy one but it's hurting my brain,
how can I split the following into two:
for ($c=ord("A"); $c<=ord("Z"); $c++) {
$f = chr($c);
echo "$f";
}
I'd like it so that it halfway between M and O I can insert some custom code for example a <br> tag, the above is a simplified version of events.
Please help,
Louis