Mejoras en visualizacion de respuestas
This commit is contained in:
parent
fdd61d7e33
commit
6a544429cc
@ -7725,17 +7725,17 @@ $boton_borrar = "
|
|||||||
foreach($nombres_campos as $campo_nombre=>$nombre){
|
foreach($nombres_campos as $campo_nombre=>$nombre){
|
||||||
$listado_nombres .= "<th>$nombre</th>";
|
$listado_nombres .= "<th>$nombre</th>";
|
||||||
}
|
}
|
||||||
$listado_nombres = "<tr><th class='actions' ></th><th>Identificador</th><th></th><th>respuestas</th>$listado_nombres </tr>";
|
$listado_nombres = "<tr><th class='actions' ></th><th>Identificador</th><th></th><th>Respuestas</th>$listado_nombres </tr>";
|
||||||
$listado_campos = listar_campos_formulario("$id_form",'');
|
$listado_campos = listar_campos_formulario("$id_form",'');
|
||||||
|
|
||||||
while( $row = mysqli_fetch_array( $sql ) ) {
|
while( $row = mysqli_fetch_array( $sql ) ) {
|
||||||
//$cantidad_campos = contar_valores_formulario("id_campo","control","$row[control]");
|
//$cantidad_campos = contar_valores_formulario("id_campo","control","$row[control]");
|
||||||
|
|
||||||
if($con_respuesta[0] !="") {
|
if($con_respuesta[0] !="") {
|
||||||
//$contenido_respuestas = "$row[control] $row[form_id] $row[timestamp]";//json_encode(datos_array("$row[control]","$row[form_id]","$row[timestamp]"));
|
//$contenido_respuestas = datos_array("$row[control]","$row[form_id]","$row[timestamp]");
|
||||||
$contenido_respuestas = array_respuestas("$id_form",$row['control'],"array");//formulario_imprimir("$row[form_id]","$identificador","array",""); ///array_respuestas("$row[form_id]","$row[control]","json");
|
$contenido_respuestas = array_respuestas("$id_form",$row['control'],"array");//formulario_imprimir("$row[form_id]","$identificador","array",""); ///array_respuestas("$row[form_id]","$row[control]","json");
|
||||||
$respuestas= json_encode($contenido_respuestas,JSON_FORCE_OBJECT);//"$contenido_respuestas $row[control] //$row[timestamp] // $row[form_id]";
|
//$respuestas= json_encode($contenido_respuestas,JSON_FORCE_OBJECT);//"$contenido_respuestas $row[control] //$row[timestamp] // $row[form_id]";
|
||||||
$listado_campos =" <td>$con_respuesta[0] $respuestas</td>";
|
$listado_campos =" <td>$contenido_respuestas</td>";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -8127,19 +8127,22 @@ if (mysqli_num_rows($sql)!='0'){
|
|||||||
|
|
||||||
$resultado ="";
|
$resultado ="";
|
||||||
while( $row = mysqli_fetch_array( $sql ) ) {
|
while( $row = mysqli_fetch_array( $sql ) ) {
|
||||||
$respuesta[] = mostrar_identificador("$identificador","$row[form_id]","array","array","$row[timestamp]");
|
|
||||||
$fecha = date("Y-m-d H:i:s", $row['timestamp']);
|
$fecha = date("Y-m-d H:i:s", $row['timestamp']);
|
||||||
|
//$respuesta['formulario'] = mostrar_identificador("$identificador","$row[form_id]","array","array","$row[timestamp]");
|
||||||
|
$resultado_linea = mostrar_identificador("$identificador","$row[form_id]","landingpage","array","$row[timestamp]");
|
||||||
|
$resultado .= "<li class='list-group-item'><span class='small'>$fecha</span> $resultado_linea</li>";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
$array[] = $respuesta;
|
//$array[] = $respuesta;
|
||||||
|
$resutado ="<div class='respuesta container'> $resultado</div>";
|
||||||
}else{$resultado ="";}
|
}else{$resultado ="";}
|
||||||
//$resultado = "$resultado $formulario_respuesta";
|
//$resultado = "$resultado $formulario_respuesta";
|
||||||
//return $resultado;
|
//return $resultado;
|
||||||
|
|
||||||
return $array;
|
return $resultado;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user