1
0
Fork 0

array tabla

This commit is contained in:
humano 2018-11-10 09:01:33 -05:00
parent 230232f06d
commit 04149ea1df
1 changed files with 2 additions and 1 deletions

View File

@ -7227,13 +7227,14 @@ $xajax->registerFunction("multiempresa");
function array_control($form_id,$key,$valor){
$resultado = array();
$consulta = "SELECT control FROM form_datos WHERE form_id = '$form_id' AND id_campo = $key AND contenido = '$valor' ";
$link=Conectarse();
mysqli_set_charset($link, "utf8");
$sql=mysqli_query($link,$consulta);
if (mysqli_num_rows($sql)!='0'){
$cantidad = mysqli_num_rows($sql);
$resultado = array();
while( $row = mysqli_fetch_array( $sql ) ) {
$resultado[] = $row['control'];
}