Viewing file: include_imprimir.php (2.17 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
function imprimir($nombre_select, $dato_comparacion, $arreglo_nombres, $arreglo_valores)
{
//$this->DATO_COMPARACION = $dato_comparacion;
//$this->NOMBRE_SELECT = $nombre_select;
//$this->ARREGLO_NOMBRES = $arreglo_nombres;
//$this->ARREGLO_VALORES = $arreglo_valores;
$nombres = explode("-", $arreglo_nombres);
$valores = explode("-", $arreglo_valores);
$numero_variables = count($nombres);
if ($dato_comparacion == "") {
?>
<option value="#" selected>NO</option>
<?php
}else{
?>
<option value="#">NO</option>
<?php
}
$c = 0;
for ($i = 1; $i <= $numero_variables; $i++) {
if ($dato_comparacion == $valores[$c]) {
?>
<option value="<?php echo $valores[$c]; ?>" selected>
<?php echo $nombres[$c]; ?> </option>
<?php
}else{
?>
<option value="<?php echo $valores[$c]; ?>"> <?php echo $nombres[$c]; ?>
</option>
<?php
}
$c++;
}
}
function imprimir1($nombre_select, $dato_comparacion, $arreglo_nombres, $arreglo_valores)
{
//$this->DATO_COMPARACION = $dato_comparacion;
//$this->NOMBRE_SELECT = $nombre_select;
//$this->ARREGLO_NOMBRES = $arreglo_nombres;
//$this->ARREGLO_VALORES = $arreglo_valores;
$nombres = explode("-", $arreglo_nombres);
$valores = explode("-", $arreglo_valores);
$numero_variables = count($nombres);
echo "<select name=\"$nombre_select\">";
if ($dato_comparacion == "") {
?>
<option value="#" selected>NO</option>
<?php
}else{
?>
<option value="#">NO</option>
<?php
}
$c = 0;
for ($i = 1; $i <= $numero_variables; $i++) {
if ($dato_comparacion == $valores[$c]) {
?>
<option value="<?php echo $valores[$c]; ?>" selected>
<?php echo $nombres[$c]; ?> </option>
<?php
}else{
?>
<option value="<?php echo $valores[$c]; ?>"> <?php echo $nombres[$c]; ?>
</option>
<?php
}
$c++;
}
echo "</select>";
}
?>
|