Ich möchte ein PDF Dokument von Issuu per PHP Code in meine Website einbinden.
Wenn ich die ID für das Dokument direkt eingebe wird das PDF auf meiner Seite angezeigt wenn ich $doc einbinde funktioniert das nicht.
So sieht dann die Ausgabe aus:
Wenn ich die ID für das Dokument direkt eingebe wird das PDF auf meiner Seite angezeigt wenn ich $doc einbinde funktioniert das nicht.
Code:
preg_match_all("/{((issuu),(.*?))}/i", $acticon, $pdffund); $issuucount = 1; foreach ($pdffund[1] as $pdfpara_komp) { $pdfpara = explode(",", $pdfpara_komp); $doc = "src=\"//e.issuu.com/embed.html#".$pdfpara[1]."\""; $issucode .="<p>$doc</p><iframe width=\"525\" height=\"373\" src=\"//e.issuu.com/embed.html#5271682/2466125\" frameborder=\"0\" allowfullscreen></iframe>"; $muster = "|{issuu,$pdfpara[1]}|"; $acticon = preg_replace($muster, $issucode, $acticon); $issuucount++; }
Code:
<p>src="//e.issuu.com/embed.html#<span style="font-family: Courier New;"> <span style="font-family: Verdana;">5271682/2466125</span></span>"</p> <iframe width="525" height="373" src="//e.issuu.com/embed.html#<span style="font-family: Courier New;"> <span style="font-family: Verdana;">5271682/2466125</span></span>" frameborder="0" allowfullscreen></iframe></p>
Kommentar