how to print this pattern using php.saurabh singh11yAsked Jun 8, 2015, 1:31 AM1.1kPHPAA,BA,B,CA,B,C,D
Neeraj Kumar11y agoPosted Jun 8, 2015, 1:49 AMAccepted answer $a=65; for($i=1;$i<5;$i++) { for($j=$i;$j>0;$j--) { printf("%c,",$a); $a++; } $a=65; echo ''; } ?>
Neeraj KumarPosted Jun 8, 2015, 1:49 AM
';