Please how can i achieve something like this:
A-FIRSTNAME
B-LASTNAME
C-MIDDLENAME
D-PHONE
her is my code
<php
$alphabet = range('A','D');
for ($i = 1; $i<4; $i++){
$i2 = $i;
echo $alphabet[$i2]."-FIRSTNAME";
echo $alphabet[$i2]."-LASTNAME";
echo $alphabet[$i2]."-MIDDLENAME";
echo $alphabet[$i2]."-PHONE";
$i2++;
}
?>