<?php
class option
{
private $value;
private $text;
public function __construct($value,$text)
{
$this->value = $value;
$this->text = $text;
}
public function get__text()
{
return $this->text;
}
public function set__text($value)
{
$this->text = $value;
}
public function get__value()
{
return $this->value;
}
public function set__value($value)
{
$this->value = $value;
}
}
?>