-revision del blog
-ultimo plazo para entregar acumulativo
1
2
3
4
5
6
7
8
9
|
<?php
//servidor, usuario de base de datos, contraseña del usuario, nombre de base de datos
$mysqli = new mysqli(“localhost”,“root”,“password”,“mexico”);
if(mysqli_connect_errno()){
echo ‘Conexion Fallida : ‘, mysqli_connect_error();
exit();
}
?>
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
require ‘fpdf/fpdf.php’;
class PDF extends FPDF
{
function Header()
{
$this->Image(‘images/logo.png’, 5, 5, 30 );
$this->SetFont(‘Arial’,‘B’,15);
$this->Cell(30);
$this->Cell(120,10, ‘Reporte De Estados’,0,0,‘C’);
$this->Ln(20);
}
function Footer()
{
$this->SetY(–15);
$this->SetFont(‘Arial’,‘I’, 8);
$this->Cell(0,10, ‘Pagina ‘.$this->PageNo().‘/{nb}’,0,0,‘C’ );
}
}
?>
|
$what
= INFO_ALL
] )