todays question is regarding date in php.

for example, lets say you want to display the date in this format:

12/22/2010

well, its very easy, all you have to do is use the date() function included in your php.

example:
<?php
echo date('m/d/Y');
?>


OUTPUT:
12/22/2010

hope that helps