Definition:
function selected( $selected, $current = true, $echo = true ) {}
Outputs the html selected attribute.
Compares the first two arguments and if identical marks as selected
Parameters
- mixed $selected: One of the values to compare
- mixed $current: (true) The other value to compare if not just true
- bool $echo: Whether to echo or just return the string
Return values
returns:html attribute or empty string
Source code
function selected( $selected, $current = true, $echo = true ) {
return __checked_selected_helper( $selected, $current, $echo, 'selected' );
}
2823

February 12, 2011 


No comments yet... Be the first to leave a reply!