hr
NAME
hr
FUNCTION
The method hr adds the provided number of horizontal rule elements to this androHtml object
as children elements.
INPUTS
number $count - Number of horizontal rule elements to add
SOURCE
function hr($count=1) {
for($x=1;$x<=$count;$x++) {
$this->children[] = '
';
}
}