-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsorteos.php
40 lines (37 loc) · 1.42 KB
/
sorteos.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
<?php
error_reporting(E_ALL);
ini_set('display_errors', '1');
include 'assets/templates/pwd.php';
include $dir .'charmadmin/dbc/dbconnect.php';
include $dir .'charmadmin/dbc/portadasDAO.php';
include $dir .'charmadmin/dbc/articulosDAO.php';
include $dir .'charmadmin/dbc/utilities.php';
include $dir .'charmadmin/dbc/socialesDAO.php';
$dbconnect = new dbconnect('charm_charmlifec536978');
$dibo = $dbconnect->getConnection();
$portadasDAO = new portadasDAO($dibo);
$articulosDAO = new articulosDAO($dibo);
$socialesDAO = new socialesDAO($dibo);
$current = 'conocenos';
?>
<html>
<head>
<title>CHARMlife Sorteos</title>
<meta charset="utf-8">
<link href='http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/styles.css">
<link rel="stylesheet" href="assets/royalslider/royalslider.css">
<link rel="stylesheet" href="assets/royalslider/skins/default/rs-default.css">
<link rel="stylesheet" href="assets/royalslider/skins/default/rx-default.css">
<script src='assets/royalslider/jquery-1.8.3.min.js'></script>
<script src="assets/js/all.js"></script>
<script src="assets/royalslider/jquery.royalslider.min.js"></script>
</head>
<body>
<?php include "assets/templates/header.php" ?>
<div class="contenido">
<!--- Aqui va el video y demas despapaye -->
</div>
<?php include 'assets/templates/footer.php'; ?>
</body>
</html>