Hello,
if i have the function:
\<?php echo date(DATE\_FORMAT.' ', strtotime($data-\>date)); ?\>
How is possible show only the Day and not the complete date?
Thanks
Hello,
if i have the function:
\<?php echo date(DATE\_FORMAT.' ', strtotime($data-\>date)); ?\>
How is possible show only the Day and not the complete date?
Thanks
What about this?
\<?php echo date('d', strtotime($data-\>date)); ?\>
More information can be found here: http://php.net/manual/en/function.date.php