2 // vim: set binary noeol et sw=4 sts=4 :
5 // Lucarella, Schein, Arena
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
11 require_once 'Item.php';
14 * XXX detailed description
19 class Pregunta extends Item
27 echo "----------------------------------------------------------------<br>";
28 echo "#".$this->id." Fecha: ".$this->fecha."<br>";;
29 //echo $this->autor."<br>";
30 echo $this->texto."<br>";
32 if ( count ( $this->respuestas ) != 0 )
34 foreach ( $this->respuestas as $objRespuesta )
36 $objRespuesta->Mostrar();