]> git.llucax.com Git - z.facultad/75.43/tp1.git/blob - src/lib/Respuesta.php
Se pone un atributo action más específico.
[z.facultad/75.43/tp1.git] / src / lib / Respuesta.php
1 <?php
2 // vim: set binary noeol et sw=4 sts=4 :
3 // Grupo 10
4 //
5 // Lucarella, Schein, Arena
6 //
7 // Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
8 //
9 // $Id$
10
11 require_once 'Item.php';
12
13 /**
14  * XXX detailed description
15  *
16  * @author    XXX
17  * @copyright XXX
18  */
19 class Respuesta extends Item
20 {
21   var $id;
22         var $idPregunta;
23         var $ranking;
24         
25         function toHTML()
26         {
27           echo "+++++++Respuesta: ";
28                 echo "$this->texto<br>";
29         }
30 }
31
32 ?>