Hi How can i get just date(day) without leading 0.
$day=date("d"); echo"$day";
THe above code display date(day) with leading zero(01,02,..09)
I wan to display date(day) without leading 0.(ie.1,2,..9)
thanks in advance.
THanks I found the code
$day=date("j");