Fecha de publicación: 01/12/2015
<?php
$this->load->helper('url');
?>
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<meta name="description" content="descripcion"/>
<link rel="shortcut icon" href="<?php echo site_url(); ?>favicon.ico" type="image/x-icon" />
<link href="<?php echo base_url(); ?>application/views/estilos/estilo.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="<?php echo base_url(); ?>application/views/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>application/views/js/jfichero.js"></script>
<title>Título</title>
</head>
<body>
</body>
</html>
<form id="id" action="<?php echo site_url(); ?>controlador/funcion" method="post" enctype="multipart/form-data">
</form>
<input type="text" name="txtnombre" id="idnombre" value="" />
<select name="txtselect" id="idselect">
<option value="1">Primero</option>
<option value="2" selected>Segundo</option>
</select>
<input type="radio" name="txtopcion" id="idopcion1" value="1"><label for="idopcion1">Primero</label>
<input type="radio" name="txtopcion" id="idopcion2" value="2"><label for="idopcion2">Segundo</label>
<input type="file" name="txtfile" id="idimagen" accept="image/*" />