| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/CAR - Copy/ |
Upload File : |
<?php
require('fpdf.php');
define('FPDF_font_path','font/');
define('EURO', chr(128) );
define('EURO_VAL', 6.55957 );
class template extends FPDF
{
// private variables
var $colonnes;
var $format;
var $angle=0;
function addSociete( $nom, $adresse )
{
$x1 = 10;
$y1 = 8;
//Positionnement en bas
$this->SetXY( $x1, $y1 );
$this->SetFont('Arial','',10);
$length = $this->GetStringWidth( $nom );
$this->Cell( $length, 2, $nom);
$this->SetXY( $x1, $y1 + 4 );
$length = $this->GetStringWidth( $adresse );
//Coordonnées de la société
$lignes = $this->sizeOfText( $adresse, $length) ;
$this->MultiCell($length, 4, $adresse);
}
} // end class
?>