I need to change the output of name; ?> to lowercase only.
name; ?>
Output now is Entertainment. How would I get it to
Entertainment
<?php echo strtolower($EM_Category->name); ?>
In PHP you use:
echo strtolower($EM_Category->name);
That would be the strtolower function.
http://us.php.net/strtolower