]> git.llucax.com Git - z.facultad/75.43/tp1.git/blobdiff - src/lib/Respuesta.php
Bugfix, faltaba arrastrar otras variables de GET.
[z.facultad/75.43/tp1.git] / src / lib / Respuesta.php
index f7c01f8003526c568ff5d52584cc29ff7df84d62..ad253271f0c9d6148c230c35300338a78364aee7 100644 (file)
@@ -1,5 +1,12 @@
 <?php
 <?php
-# vim: et sw=4 sts=4 binary noeol :
+// vim: set binary noeol et sw=4 sts=4 :
+// Grupo 10
+//
+// Lucarella, Schein, Arena
+//
+// Creado: Leandro Lucarella (sáb abr 30 20:21:30 ART 2005)
+//
+// $Id$
 
 require_once 'Item.php';
 
 
 require_once 'Item.php';
 
@@ -11,15 +18,16 @@ require_once 'Item.php';
  */
 class Respuesta extends Item
 {
  */
 class Respuesta extends Item
 {
-    // Attributes
-   /**
-    *    XXX
-    *    @access public
-    */
-    var $ranking;
-
-    // Associations
-    // Operations
+  var $id;
+       var $idPregunta;
+       var $ranking;
+       
+       function toHTML()
+       {
+         echo "+++++++Respuesta: ";
+               echo "$this->texto<br>";
+               echo "Autor de la respuesta: $this->autor<br>";
+       }
 }
 
 ?>
\ No newline at end of file
 }
 
 ?>
\ No newline at end of file