Exemplo n.º 1
0
<html lang="es" ng-app="app">
<?php 
if (!isset($_SESSION)) {
    session_start();
}
if (isset($_SESSION['id_imprimere'])) {
    require_once '/../../php/clases/producto.class.php';
    require_once '/../../php/clases/servicio.class.php';
    $class_producto = new producto();
    $class_servicio = new servicio();
    $productos = $class_producto->getproductos_venta();
    // $servicios = $class_servicio->getservicios_venta();
} else {
    session_destroy();
    header("Location: ../../index.php");
}
?>
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
	<title>Facturar</title>

	<link rel="shortcut icon" type="image/x-icon" href="../../favicon.png">

	<link rel="stylesheet" href="../../css/bootstrap.css">
	<link rel="stylesheet" href="../../css/flat-ui.css">
	<link rel="stylesheet" href="../../css/spinner.css">
</head>
<body>