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
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<link href="style.css" rel="stylesheet" type="text/css">
<link href="style_imprime.css" rel="stylesheet" type="text/css" media="print" />
<base target="accueil">
<script type='text/javascript'>
function imprimePDF()
{
var x = document.getElementById("PDF");
x.focus();
x.print();
}
</script>
</head>
<body>
<object id="PDF" width="1200" height="610" data="<?php echo $_GET ['chemin']; ?>" name="whatever" onfocus="imprimePDF()">
</object>
</body>
</html> |