PHP Beispiele und Übungen: Code

<?php
  //Kein Resultat
  $titel = "PHP Diverses";
  $untertitel = "Fremde Datei wrappen";

  $pagename = basename($_SERVER["PHP_SELF"]);
?>

<?php include 'incdoctype.php'?>
<html>
  <head>
    <?php include 'incheader.php'?>
    <title><?php echo "$titel: $untertitel"?></title>
  </head>
  <body>
    <div class="main">
      <h1><?php echo "$titel: $untertitel"?></h1>
  <p>Achtung: file_get_contents mit externen URLs ist auf vielen Servern unterbunden!</p>
      <?php
        $content = file_get_contents(
          "http://www.abtshop.de/Shop/katalog/showartdetail.do?artId=20633");
        $content = str_replace("src=\"/", "src=\"https://www.abtshop.de/", $content);
        echo mb_convert_encoding($content, 'UTF-8',
          mb_detect_encoding($content, 'UTF-8, ISO-8859-1', true));
      ?>

      <?php include 'incfooter.php'?>
    </div>
  </body>
</html>

Demo

Zurück zur Liste mit PHP-Beispielen
Zurück zu www.ecotronics.ch
Impressum und Datenschutzerklärung