I want to create unique code iwth respect to particular selected item my unique code format is
FN1A,FN1B---------FN1Z After z loop is start again
FN2A,FN2B-----------FN2Z So on
Here i use this code
<?php
for($row=1; $row<=22; $row++){
echo "<tr>";
for ($column='A'; $column!='AA'; $column++){
echo "<td> $row $column </td>";
}
echo "</tr>";
}
?>
Please help me guys to create unique sample code with same format i mention in this