-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
54 lines (52 loc) · 2.03 KB
/
search.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
<?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 = 'index';
?>
<!DOCTYPE html>
<html lang="es">
<head>
<title>CHARMlife</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" type="text/css" href="assets/css/styles.css">
<link rel="stylesheet" type="text/css" href="assets/css/stylesheet.css">
<link rel="stylesheet" href="assets/royalslider/royalslider.css">
<link rel="stylesheet" href="assets/royalslider/skins/default/rx-default.css">
<script type="text/javascript" src="assets/royalslider/jquery-1.8.3.min.js"></script>
<script src="assets/royalslider/jquery.royalslider.min.js"></script>
<script type="text/javascript" src="assets/js/all.js"></script>
<script type="text/javascript" src="assets/js/assets.js"></script>
</head>
<body>
<?php include "assets/templates/header.php" ?>
<section class="wrapper contenido">
<script>
(function() {
var cx = '011477930763838840617:tzz96y75w7g';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') +
'//www.google.com/cse/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
})();
</script>
<gcse:searchresults-only></gcse:searchresults-only>
</section>
<br class="clear">
<?php include "assets/templates/footer.php" ?>
</body>
</html>