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