mini tips
number of categories with php
September 20, 2003
Code from Kristine found on the forum:
<?
$count=array(<MTCategories>"<$MTCategoryLabel$>", </MTCategories>);
echo count($count);
?>
$count=array(<MTCategories>"<$MTCategoryLabel$>", </MTCategories>);
echo count($count);
?>
php snippet - padded entry id
September 20, 2003
Just a little bit of handy code.
$padded_entry_id = str_pad($entry_id, 6, "0", STR_PAD_LEFT);