This sql call,
<div class="dateOnAd"><?php print $row['dttm_modified']; ?></div>
outputs:
2012-05-22 15:07:28.
I need to figure out a way to divide the output into different divs
<div class="example-date">
<span class="day">31</span>
<span class="month">July</span>
<span class="year">2009</span>
</div>
You can read more about the
date()function here:date.