-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrato_confidencialidad.php
63 lines (53 loc) · 1.72 KB
/
contrato_confidencialidad.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?php require_once("includes/conexion.php");
$Nombre_archivo="contrato_confidencialidad.txt";
$Archivo=fopen($Nombre_archivo,"r");
$Contenido = fread($Archivo, filesize($Nombre_archivo));
/*if ($Archivo) {
while(($bufer = fgets($gestor, 4096)) !== false) {
echo $bufer;
}
if (!feof($gestor)) {
echo "Error: fallo inesperado de fgets()\n";
}
fclose($gestor);
}*/
?>
<!DOCTYPE html>
<html><!-- InstanceBegin template="/Templates/PlantillaPrincipal.dwt.php" codeOutsideHTMLIsLocked="false" -->
<head>
<?php include_once("includes/cabecera.php"); ?>
<!-- InstanceBeginEditable name="doctitle" -->
<title><?php echo NOMBRE_PORTAL;?> | Contrato de confidencialidad</title>
<!-- InstanceEndEditable -->
<!-- InstanceBeginEditable name="head" -->
<!-- InstanceEndEditable -->
</head>
<body>
<div id="wrapper">
<?php include_once("includes/menu.php"); ?>
<div id="page-wrapper" class="gray-bg">
<?php include_once("includes/menu_superior.php"); ?>
<!-- InstanceBeginEditable name="Contenido" -->
<div class="row wrapper border-bottom white-bg page-heading">
<div class="col-lg-12">
<h2>Contrato de confidencialidad</h2>
</div>
</div>
<div class="row wrapper wrapper-content animated fadeInRight">
<div class="col-xs-12 col-sm-12 col-md-6 col-lg-10">
<?php echo $Contenido;?>
</div>
</div>
<!-- InstanceEndEditable -->
<?php include_once("includes/footer.php"); ?>
</div>
</div>
<?php include_once("includes/pie.php"); ?>
<!-- InstanceBeginEditable name="EditRegion4" -->
<!-- InstanceEndEditable -->
</body>
<!-- InstanceEnd --></html>
<?php
fclose($Archivo);
sqlsrv_close($conexion);
?>