first commit
This commit is contained in:
74
html2pdf_v4.03/examples/exemple09.php
Executable file
74
html2pdf_v4.03/examples/exemple09.php
Executable file
@ -0,0 +1,74 @@
|
||||
<?php
|
||||
/**
|
||||
* HTML2PDF Librairy - example
|
||||
*
|
||||
* HTML => PDF convertor
|
||||
* distributed under the LGPL License
|
||||
*
|
||||
* @author Laurent MINGUET <webmaster@html2pdf.fr>
|
||||
*
|
||||
*/
|
||||
|
||||
$generate = isset($_GET['make_pdf']);
|
||||
$nom = isset($_GET['nom']) ? $_GET['nom'] : 'inconnu';
|
||||
|
||||
$nom = substr(preg_replace('/[^a-zA-Z0-9]/isU', '', $nom), 0, 26);
|
||||
|
||||
if ($generate) {
|
||||
ob_start();
|
||||
} else {
|
||||
?>
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/../htdocs4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="te../htdocs; charset=UTF-8" >
|
||||
<title>Exemple d'auto génération de PDF</title>
|
||||
</head>
|
||||
<body>
|
||||
<?php
|
||||
}
|
||||
|
||||
$url = dirname($_SERVER['REQUEST_URI']).'/res/exemple09.png.php?px=5&py=20';
|
||||
if (substr($url, 0, 7)!=='http://') {
|
||||
$url = 'http://'.$_SERVER['HTTP_HOST'].$url;
|
||||
}
|
||||
?>
|
||||
<br>
|
||||
Ceci est un exemple de génération de PDF via un bouton :)<br>
|
||||
<br>
|
||||
<img src="<?php echo $url; ?>" alt="image_php" ><br>
|
||||
<br>
|
||||
<?php
|
||||
if ($generate) {
|
||||
?>
|
||||
Bonjour <b><?php echo $nom; ?></b>, ton nom peut s'écrire : <br>
|
||||
<barcode type="C39" value="<?php echo strtoupper($nom); ?>" style="color: #770000" ></barcode><hr>
|
||||
<br>
|
||||
<?php
|
||||
}
|
||||
?>
|
||||
<br>
|
||||
<?php
|
||||
if ($generate) {
|
||||
$content = ob_get_clean();
|
||||
require_once(dirname(__FILE__).'/../htdocs2pdf.class.php');
|
||||
try
|
||||
{
|
||||
$html2pdf = new HTML2PDF('P', 'A4', 'fr');
|
||||
$html2pdf->writeHTML($content);
|
||||
$html2pdf->Output('exemple09.pdf');
|
||||
exit;
|
||||
}
|
||||
catch(HTML2PDF_exception $e) {
|
||||
echo $e;
|
||||
exit;
|
||||
}
|
||||
}
|
||||
?>
|
||||
<form method="get" action="">
|
||||
<input type="hidden" name="make_pdf" value="">
|
||||
Ton nom : <input type="text" name="nom" value=""> -
|
||||
<input type="submit" value="Generer le PDF" >
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user