Dear All
I wish to print the nos as 01 02 03 not 1, 2, 3 and store it in database.
Below code will print only as 1, 2, 3
how to add the leading zero uptill 9????
for ($i=0; $i < count($hofas); $i++)
{
$seat1 = "A".$i
echo $seat1;
}
Please help.... thankx