Questionário sobre a Expectativa e a Qualidade de Vida dos Estudantes de Informática
class Pergunta{
var $pergunta;// string da pergunta
var $arrayAlts; //array de alternativas
var $proxima; //int indicando a próx posição livre
var $numQ; //int indicando o número da questão
var $type; //tipo: radio ou checkbox
function Pergunta( $perg , $n , $t ){
$this->pergunta = $perg;
$this->proxima = 0;
$this->numQ = $n;
$this->type = $t;
}
function imprimirAlts(){
if( $this->type == 'radio' ){
for( $i = 0; $i < $this->proxima; $i++ ){
$temp = $i + 1;
echo ("