Denkbar schlechte Lösung , niemals Querys in Schleifen verwenden
mfg
Denkbar schlechte Lösung , niemals Querys in Schleifen verwenden
mfg
und wieso?
Weil mysql_query langsam ist
mfg
ja und deswegen wird es ja in einen SQL gegeben und nicht in mehreren ausgeführt?
Oh da habe ich mich verlesen , tut mir leid aber kommt davon wenn man kein {} setzt
ja bei einem befehl ist es nicht notwendig und find ich unübersichtlich
ist aber eh eingerückt
Hallo, nochmal.
Kennt sich jemand mit dem dompdf aus? Die Dokumentation ist leider nicht besonders.
Irgendwie wirft er nur eine Adresse raus und background-image will er auch nicht darstellen.
Hier nochmal die print.php
<?php
session_start();
require_once("dompdf/dompdf_config.inc.php");
error_reporting(E_ALL); #zeig alle Fehler
ini_set('display_errors', '1');
foreach($_SESSION['adressarray'] as $key){
$firma = $key['firma'];
$anrede = $key['anrede'];
$vorname = $key['vorname'];
$name = $key['name'];
$strasse = $key['strasse'];
$plz = $key['plz'];
$ort = $key['ort'];
$email = $key['email'];
$telefon = $key['telefon'];
$layout = intval($_POST['auswahl']);
$html =
'<html>
<style type="text/css">
<!--
#body {
width:500px;
height:800px;
background-image:url(img_get_layout.php?id=<?php echo "' . $layout . '"; ?>);
background-repeat:no-repeat;
}
.kopf {
width:300px;
height:300px;
font-size:12px;
color:#000;
}
.text {
width:500px;
height:500px;
}
-->
</style>
<body>'.
'<div class="kopf">'.
'<p><?php echo "' . $firma . '"; ?><br>
<?php echo "' . $anrede . '"; ?><br>
<?php echo "' . $vorname . '"; ?>
<?php echo "' . $name . '"; ?><br>
<?php echo "' . $strasse . '"; ?><br><br>
<?php echo "' . $plz . '"; ?>
<?php echo "' . $ort . '"; ?><br></p>'.
'</div>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("sample.pdf");
}
//session_destroy();
?>
Alles anzeigen
Ansonsten mache ich es halt über html und druck vom Browser aus.
Gruß
Alles anzeigenHallo, nochmal.
Kennt sich jemand mit dem dompdf aus? Die Dokumentation ist leider nicht besonders.
Irgendwie wirft er nur eine Adresse raus und background-image will er auch nicht darstellen.
Hier nochmal die print.php
PHP Alles anzeigen<?php session_start(); require_once("dompdf/dompdf_config.inc.php"); error_reporting(E_ALL); #zeig alle Fehler ini_set('display_errors', '1'); foreach($_SESSION['adressarray'] as $key){ $firma = $key['firma']; $anrede = $key['anrede']; $vorname = $key['vorname']; $name = $key['name']; $strasse = $key['strasse']; $plz = $key['plz']; $ort = $key['ort']; $email = $key['email']; $telefon = $key['telefon']; $layout = intval($_POST['auswahl']); $html = '<html> <style type="text/css"> <!-- #body { width:500px; height:800px; background-image:url(img_get_layout.php?id=<?php echo "' . $layout . '"; ?>); background-repeat:no-repeat; } .kopf { width:300px; height:300px; font-size:12px; color:#000; } .text { width:500px; height:500px; } --> </style> <body>'. '<div class="kopf">'. '<p><?php echo "' . $firma . '"; ?><br> <?php echo "' . $anrede . '"; ?><br> <?php echo "' . $vorname . '"; ?> <?php echo "' . $name . '"; ?><br> <?php echo "' . $strasse . '"; ?><br><br> <?php echo "' . $plz . '"; ?> <?php echo "' . $ort . '"; ?><br></p>'. '</div>'. '</body></html>'; $dompdf = new DOMPDF(); $dompdf->load_html($html); $dompdf->render(); $dompdf->stream("sample.pdf"); } //session_destroy(); ?>
Ansonsten mache ich es halt über html und druck vom Browser aus.
Gruß
Du überschreibst die sample.pdf ja auch immer
Irgendwie wirft er nur eine Adresse raus und background-image will er auch nicht darstellen.
Hier nochmal die print.php
Du kannst innerhalb einer Zeichenkette, die du an eine Variable zuweist, nicht nochmal PHP verwenden. Änder dies so um:
Hallo.
ZitatDu überschreibst die sample.pdf ja auch immer
Da hast du natürlich recht. doch wenn ich den dompdf ausklammere, bzw. teilweise rausnehme, bekomme ich gar keine Daten mehr angezeigt. Gibt es eine Möglichkeit die Schleife für diesen Bereich zu unterbrechen?
Hatte etwas Hoffnung, doch leider keine Anzeige des Bildes.
Hallo nochmal!
Das mit dem background-image hat sich erfreulicherweise erledigt.
Er mochte offenbar das # vor dem body im Stylesheet nicht.
Nur halt noch das Problem mit dem überschreiben der .pdf
Wenn er es aber nun immer wieder überschreibt, hat die Erfahrung gezeigt, dass er dann immer den letzten Datensatz anzeigt.
Hier ist es aber der Erste.
Gruß und Danke bis dato.
hmm... was willst du denn machen? Für jede Person eine PDF oder eine PDF mit allen Personen drin?
Für jede Person ein PDF. Also, wenn ich 10 Adressen wähle soll er mir 10 Seiten generieren.
10 Seiten oder 10 Pdf dokumente?
Da die Datei nach dem Druck nicht mehr gebraucht wird, gerne 10 Seiten
Na dann schreibst du $dompdf = new DOMPDF(); vor der Klammer
$dompdf->load_html($html);
das lässt du in der klammer
und
$dompdf->render();
$dompdf->stream("sample.pdf");
hinter den klammern
mit new_page kannst dann neue steiten erstellen aber jetzt probiers erst mal so
Ja mach ich mal
Hab es mal wie folgt geändert. Doch dann wirft er nur eine Seite das Layout raus, aber keine Adressen.
<?php
session_start();
error_reporting(E_ALL); #zeig alle Fehler
ini_set('display_errors', '1');
require_once("dompdf/dompdf_config.inc.php");
$dompdf = new DOMPDF();
foreach($_SESSION['adressarray'] as $key){
$firma = $key['firma'];
$anrede = $key['anrede'];
$vorname = $key['vorname'];
$name = $key['name'];
$strasse = $key['strasse'];
$plz = $key['plz'];
$ort = $key['ort'];
$email = $key['email'];
$telefon = $key['telefon'];
$html =
'<html>
<style type="text/css">
body {
width:100%;
height:100%;
background-image:url(../images/brief_blanko.jpg);
background-repeat:no-repeat;
}
.kopf {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
color:#000;
margin-left:45px;
padding-top:165px;
}
.text {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
color:#000;
padding-top:95px;
}
</style>
<body>'.
'<div class="kopf">'.
'<p><?php echo "' . $firma . '"; ?><br>
<?php echo "' . $anrede . '"; ?><br>
<?php echo "' . $vorname . '"; ?>
<?php echo "' . $name . '"; ?><br>
<?php echo "' . $strasse . '"; ?><br><br>
<?php echo "' . $plz . '"; ?>
<?php echo "' . $ort . '"; ?><br></p>'.
'</div>'.
'</body></html>';
$html = iconv('UTF-8','Windows-1250',$html);
$dompdf->load_html($html);
}
$dompdf->render();
$dompdf->stream("sample.pdf");
//session_destroy();
?>
Alles anzeigen
Kenn mich auch net mit der Klasse aus
[COLOR=#000000] [COLOR=#0000BB]<?php
session_start[/COLOR][COLOR=#007700]();
[/COLOR][COLOR=#0000BB]error_reporting[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]E_ALL[/COLOR][COLOR=#007700]); [/COLOR][COLOR=#FF8000]#zeig alle Fehler
[/COLOR][COLOR=#0000BB]ini_set[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'display_errors'[/COLOR][COLOR=#007700], [/COLOR][COLOR=#DD0000]'1'[/COLOR][COLOR=#007700]);
require_once([/COLOR][COLOR=#DD0000]"dompdf/dompdf_config.inc.[URL='http://www.forum-hilfe.de/vbglossar.php?do=showentry&item=php']php[/URL]"[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]$dompdf [/COLOR][COLOR=#007700]= new [/COLOR][COLOR=#0000BB]DOMPDF[/COLOR][COLOR=#007700]();
foreach([/COLOR][COLOR=#0000BB]$_SESSION[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'adressarray'[/COLOR][COLOR=#007700]] as [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700]){
[/COLOR][COLOR=#0000BB]$firma [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'firma'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$anrede [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'anrede'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$vorname [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'vorname'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$name [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'name'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$strasse [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'strasse'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$plz [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'plz'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$ort [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'ort'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$email [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'email'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$telefon [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]$key[/COLOR][COLOR=#007700][[/COLOR][COLOR=#DD0000]'telefon'[/COLOR][COLOR=#007700]];
[/COLOR][COLOR=#0000BB]$html [/COLOR][COLOR=#007700]=
[/COLOR][COLOR=#DD0000]'<html>
<style type="text/css">
body {
width:100%;
height:100%;
background-image:url(../images/brief_blanko.jpg);
background-repeat:no-repeat;
}
.kopf {
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
color:#000;
margin-left:45px;
padding-top:165px;
}
.text {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size:14px;
color:#000;
padding-top:95px;
}
</style>
<body>[/COLOR][COLOR=#007700][/COLOR][COLOR=#DD0000]<div class="kopf">'[/COLOR][COLOR=#007700].[/COLOR][COLOR=#DD0000][/COLOR][COLOR=#007700][/COLOR][COLOR=#0000BB]$firma[/COLOR][COLOR=#007700].[/COLOR][COLOR=#DD0000]'</div><[/COLOR][COLOR=#007700][/COLOR][COLOR=#DD0000]/body></html>'[/COLOR][COLOR=#007700];
[/COLOR][COLOR=#0000BB]$html [/COLOR][COLOR=#007700]= [/COLOR][COLOR=#0000BB]iconv[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]'UTF-8'[/COLOR][COLOR=#007700],[/COLOR][COLOR=#DD0000]'Windows-1250'[/COLOR][COLOR=#007700],[/COLOR][COLOR=#0000BB]$html[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#0000BB]$dompdf[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000BB]load_html[/COLOR][COLOR=#007700]([/COLOR][COLOR=#0000BB]$html[/COLOR][COLOR=#007700]);
}
[/COLOR][COLOR=#0000BB]$dompdf[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000BB]render[/COLOR][COLOR=#007700]();
[/COLOR][COLOR=#0000BB]$dompdf[/COLOR][COLOR=#007700]->[/COLOR][COLOR=#0000BB]stream[/COLOR][COLOR=#007700]([/COLOR][COLOR=#DD0000]"sample.pdf"[/COLOR][COLOR=#007700]);
[/COLOR][COLOR=#FF8000]//session_destroy();
[/COLOR][COLOR=#0000BB]?>[/COLOR] [/COLOR]
Alles anzeigen
hat in dem Beispiel $firma überhaupt einen inhalt ?
Mal ja mal nein.