Achja, und hier noch das Druckscript, falls es hilft:
<?php
function text_ausschnitt($string, $beginn, $ende){
$string = strchr($string, $beginn);
$pos_ende = strpos($string, $ende);
$string = substr($string, 0,$pos_ende);
return $string;
}
$url = $_GET['url'];
$beginn = "<!-- #PRINT -->";
$ende = "<!-- ##PRINT -->";
if($url != NULL){
// Öffne und lese die Seite
$string = file_get_contents($url);
}
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Artikel Drucken</title>
<meta name="author" content="Kevin Erhardt">
<meta name="date" content="2004">
<style type="text/css">
body {
font-family: "Verdana", Arial, Tahoma;
font-size: 9pt;
color: #000000;
}
</style>
</head>
<body>
<?php echo text_ausschnitt($string, $beginn, $ende); ?>
<br>
<button onclick="self.print();">Drucken</button>
</body>
</html>