-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVision.php
More file actions
36 lines (30 loc) · 915 Bytes
/
Vision.php
File metadata and controls
36 lines (30 loc) · 915 Bytes
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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<title>Home</title>
</head>
<body>
<?php
include'css/barra.html';
$_SESSION['nombre'] ="Keny el Moreteador";
echo "Usuario: ". $_SESSION['nombre'];
echo "<br> ID de session: ". session_id();
echo "<br> Nombre de session: ". session_name();
?>
<br>
<h2> VISIÓN: </h1>
<br>
Posicionarnos como la procesadora de embutidos artesanales lider en Popayan Y Bogota, resaltando el sabor característico de sus excelentes materias primas, satisfaciendo así los requerimientos de nuestra excluisiva clientela.
<br>
Ser una empresa líder en el mercado de carnes frías, buscando la excelencia en nuestros productos y procesos.
<br>
<br>
<h3> Donde de vende Cata </h3>
</body>
</html>