From 14d9bd59dc00b84a79e675edc8e7c5682294d0b8 Mon Sep 17 00:00:00 2001 From: fredyrivera Date: Sun, 27 Nov 2016 02:53:54 -0500 Subject: [PATCH] div formulario respuesta --- milfs/funciones/funciones.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/milfs/funciones/funciones.php b/milfs/funciones/funciones.php index afc60e2..e7a46a4 100644 --- a/milfs/funciones/funciones.php +++ b/milfs/funciones/funciones.php @@ -2786,12 +2786,12 @@ $sql=mysqli_query($link,$consulta); if (mysqli_num_rows($sql)!='0'){ mysqli_data_seek($sql, 0); $resultado =" - "; +
"; while( $row = mysqli_fetch_array( $sql ) ) { - $resultado .= "
"; + $resultado .= "
$row[nombre] $row[descripcion]
"; } - $resultado .="
$row[nombre] $row[descripcion]
"; + $resultado .=""; }else{$resultado ="";} return $resultado; }