php-tools/functions.php
2013-07-25 17:55:56 -04:00

10 lines
133 B
PHP

<?php
function selected($selected, $current) {
if ($selected === $current) {
return 'selected';
}
return '';
}