CMPHP/form/form_radio.php
2016-08-21 23:06:17 +04:00

36 lines
508 B
PHP

<?php
class UIRadio
{
private $name;
private $selected;
public function __construct1($n)
{
$this->name=$n;
$this->selected=null;
}
public function __construct2($n,$s)
{
$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 '/>';
}
}
?>