From: Jonathan Schein Date: Thu, 28 Apr 2005 05:44:49 +0000 (+0000) Subject: Draft de logica para el modulo de FAQ X-Git-Tag: svn_import~153 X-Git-Url: https://git.llucax.com/z.facultad/75.43/tp1.git/commitdiff_plain/d1e838d01ae0b58425a5e33c93d64bf85aa35b05?ds=sidebyside Draft de logica para el modulo de FAQ --- diff --git a/temp/ClassFaq.inc b/temp/ClassFaq.inc new file mode 100644 index 0000000..7b6ef3f --- /dev/null +++ b/temp/ClassFaq.inc @@ -0,0 +1,20 @@ +require_once 'ClassFaq.inc'; + +class Pregunta +{ + var $id; + var $activa; + var $autor; + var $respuesta; + var $fecha; + var $texto +} + +class Respuesta +{ + var $idPregunta; + var $autor; + var $fecha; + var $texto; + var $rankin; +} \ No newline at end of file diff --git a/temp/FunctionsFAQ.php b/temp/FunctionsFAQ.php new file mode 100644 index 0000000..0864e53 --- /dev/null +++ b/temp/FunctionsFAQ.php @@ -0,0 +1,46 @@ +id = $rowDiv[0]; + $objPregunta->activa = $rowDiv[1]; + $objPregunta->autor = $rowDiv[2]; + $objPregunta->fecha = date('d/m/y H:i:s', $rowDiv[3]); + $objPregunta->texto = $rowDiv[4]; + + $Preguntas[] = $objPregunta; +} + +return $Preguntas; +} + + +?> \ No newline at end of file diff --git a/temp/IngresarPregunta.html b/temp/IngresarPregunta.html new file mode 100644 index 0000000..10e73d1 --- /dev/null +++ b/temp/IngresarPregunta.html @@ -0,0 +1,14 @@ + + + + +Ingresa Preguntas + + +
+
+
+ +
+ + diff --git a/temp/ListarPreguntas.php b/temp/ListarPreguntas.php new file mode 100644 index 0000000..0f69b7f --- /dev/null +++ b/temp/ListarPreguntas.php @@ -0,0 +1,30 @@ + + + + +Preguntas Realizadas + + +activa ) + { + echo "-------------------------------------
"; + echo $ObjPregunta->id."
"; + echo $ObjPregunta->autor."
"; + echo $ObjPregunta->fecha."
"; + echo $ObjPregunta->texto."
"; + echo "-------------------------------------
"; + + } + +} + ?> + + diff --git a/temp/TMPB5.htm b/temp/TMPB5.htm new file mode 100644 index 0000000..10e73d1 --- /dev/null +++ b/temp/TMPB5.htm @@ -0,0 +1,14 @@ + + + + +Ingresa Preguntas + + +
+
+
+ +
+ + diff --git a/temp/alta.php b/temp/alta.php new file mode 100644 index 0000000..12fe2a1 --- /dev/null +++ b/temp/alta.php @@ -0,0 +1,32 @@ + + + + +Untitled + + + + +El usuario fue dado de alta correctamente. + + diff --git a/temp/datos.dat b/temp/datos.dat new file mode 100644 index 0000000..017d4e9 --- /dev/null +++ b/temp/datos.dat @@ -0,0 +1,2 @@ +Pepe 1 +15 diff --git a/temp/form1.html b/temp/form1.html new file mode 100644 index 0000000..f7dbefb --- /dev/null +++ b/temp/form1.html @@ -0,0 +1,42 @@ + + + + + +INGRESO DE DATOS + + +
+ Nombre :
+ Edad :
+ +
+ + diff --git a/temp/hola.php b/temp/hola.php new file mode 100644 index 0000000..df54669 --- /dev/null +++ b/temp/hola.php @@ -0,0 +1,12 @@ + + + Ejemplo de PHP + + + +Hola . +Tiene años + + + + diff --git a/temp/hola.txt b/temp/hola.txt new file mode 100644 index 0000000..e69de29 diff --git a/temp/ingresarPregunta.php b/temp/ingresarPregunta.php new file mode 100644 index 0000000..fe345cc --- /dev/null +++ b/temp/ingresarPregunta.php @@ -0,0 +1,39 @@ + + + + +Pregunta Guardada + + +id; + $NuevoId = $NuevoId + 1; +} + +$Linea = $NuevoId."|"."1|".$UserId."|".$Fecha."|".$Texto."\r\n"; +$fp = fopen("preguntas.txt","a"); +if(!$fp) +{ + echo "Error en el archivo"; + exit; +} +fwrite($fp, $Linea); +fclose($fp); +echo "La pregunta fue dada de alta correctamente"; + ?> + + diff --git a/temp/preguntas.txt b/temp/preguntas.txt new file mode 100644 index 0000000..1f2a962 --- /dev/null +++ b/temp/preguntas.txt @@ -0,0 +1,3 @@ +0|1|1|1114660481|Hola, esto anda? +1|1|1|1114661699|pepe? +2|1|1|1114662049|otra pregunta \ No newline at end of file