简体   繁体   中英

PHP Including HTML File

I need to include an HTML file inside of a PHP file. The HTML file contains the following:

  <div id="slideshow">
    <ul>
      <li>
        <img src="http://farm6.static.flickr.com/5270/5627221570_afdd85f16a_z.jpg" alt="" title="Light Trails" />
      </li>

      <li>
        <img src="http://farm6.static.flickr.com/5146/5627204218_b83b2d25d6_z.jpg" alt="" title="Bokeh" />
      </li>

      <li>           
        <img src="http://farm6.static.flickr.com/5181/5626622843_783739c864_z.jpg" alt="" title="Blossoms" />
      </li>

      <li>           
        <img src="http://farm6.static.flickr.com/5183/5627213996_915aa49939_z.jpg" alt="" title="Funky Painting" />
      </li>

      <li>           
        <img src="http://farm6.static.flickr.com/5182/5626649425_fde8610329_z.jpg" alt="" title="Vintage Chandelier" />
      </li>                          
    </ul>
  </div>   

  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  <script src="/slideshow/js/craftyslide.min.js"></script>

  <script>
    $("#slideshow").craftyslide();
  </script>

To include the HTML file I'm using this PHP statement:

<?php include ('http://nicksgroent.dk/slideshow/demo.html' ); ?>

However this doesn't work.

<?php echo file_get_contents('http://nicksgroent.dk/slideshow/demo.html'); ?>

You might have remote inclusion turned off. ( allow_url_include ) As per the link, however, this is not the ideal way to include a remote file. You'd be better off using file_get_contents or CURL.

See https://stackoverflow.com/a/1158392/1324019 .

if allow_fopen_url is enabled

$content = file_get_contents('http://nicksgroent.dk/slideshow/demo.html');
echo $content;

or curl

$ch = curl_init('http://nicksgroent.dk/slideshow/demo.html');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);
echo $content;

include expects php files and parses as such, try the following;

$page = file_get_contents('http://nicksgroent.dk/slideshow/demo.html');
echo $page;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM