How to echo "Date Added"?

Hi,

How can I echo the "Date Added" information of items to my site (as it's seen in the far right column of Items Page in the Control Panel)? In which set does it belong to? Something like the following code won't do the trick...

<?php echo metadata('item', 'Date Added'); ?>

Thanks.

This should do the trick. the second parameter to format_date() lets you change the format, using Zend_Date

<?php echo format_date(metadata('item', 'added')); ?>

Oh yes... worked great, thanks!!