include 'FunctionsFaq.php';
$UserId = $_POST["UserId"];
$Texto = $_POST["Pregunta"];
$Fecha = time();
$Preguntas = ObtenerPreguntas();
$CantidadPreguntas = count($Preguntas);
$NuevoId= 0;
if ( $CantidadPreguntas != 0 )
{
$PreguntaObj = $Preguntas[$CantidadPreguntas -1];
$NuevoId = $PreguntaObj->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";
?>