-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrearDocumento.php
More file actions
27 lines (24 loc) · 1.09 KB
/
crearDocumento.php
File metadata and controls
27 lines (24 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php include 'php/head.php'; ?>
<form class="form-group" method="POST" action="subirDocumentoConv.php" enctype="multipart/form-data">
<div class="form-group table-responsive">
<table class="table table-hover" id="tablaDocumtosLectura">
<tr>
<td><span class="glyphicon">Nombre</span></td>
<td>archivo <span class="glyphicon glyphicon-paperclip"></span></td>
<td>descargas <span class="glyphicon glyphicon-download-alt"></span></td>
</tr>
<?php include 'php/documentosLectura.php'; ?>
<tr>
<td>
<input class="form-control" type="text" name="nombredoc" placeholder="nombre"/>
</td>
<td>
<input class="btn btn-primary btn-sm" name="archivo" type="file"/>
</td>
<td>
<input class="btn btn-primary btn-sm" type="submit"/>
</td>
</tr>
</table>
</div>
</form>