CMPHP/form/form_radio.php

30 lines
416 B
PHP
Raw Normal View History

2017-02-23 15:21:34 +08:00
<?php
2016-08-21 23:06:17 +04:00
class UIRadio
{
private $name;
private $selected;
public function __construct($n,$s)
2016-08-21 23:06:17 +04:00
{
$this->name=$n;
$this->selected=$s;
}
public function SetSelected($s)
{
$this->selected=$s;
}
public function option($value)
{
echo '<input type="radio" name="'.$this->name.'" value="'.$value.'"';
if($this->selected==$value)
echo ' checked="checked"';
echo '/>';
}
}
?>