1
0
Fork 0
php-tools/functions.php

10 Zeilen
133 B
PHP

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