Viewing file: demo_2.php (1.22 KB) -rw-rw-rw- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
// Inclusiones
include ('../clases_consulta/class_consulta_sql.php');
include ('class_listar.php');
include ('class_paginar.php');
include ('class_seleccion.php');
include ('class_files.php');
include ('class_filtrar_select_edicion.php');
$d = isset($accion);
if ($d==true) {
$file_up = new archivo($file,300,300,$file_name);
echo $file_up->ARCHIVO;
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<form action="demo_2.php" method="post" enctype="multipart/form-data" name="form1">
<p>
<select name="idioma_id"><?php
$control = new select_v1(0, "idioma_id, idioma_nombre", "idioma", "id != 0", 2, 0, "(id)-(nombre)", "<option value=\"(id)\">(nombre)</option>", "");
//$control = new filtrar_select_edicion("id, nombre_enti", "entidad", "id != 0", "", "", "id", "entidad_id", 224, "links", "entidad");
?></select>
</p>
<p>
<input type="file" name="file">
<input type="submit" name="Submit" value="Enviar">
<input name="accion" type="hidden" id="accion" value="1">
</p>
</form>
</body>
</html>
|