1

Update index.php

This commit is contained in:
Evan Pratten 2017-09-10 12:14:01 -04:00 committed by GitHub
parent ebe84b057f
commit 62233e932b

View File

@ -62,16 +62,7 @@
<div class="rantlist-bg">
<ul class="rantlist">
<?php
$path = "./content/";
if ($handle = opendir($path)) {
while (false !== ($file = readdir($handle))) {
if ('.' === $file) continue;
if ('..' === $file) continue;
// do something with the file
$url = $file;
$url = './content/test.json';
$content = file_get_contents($url);
$json = json_decode($content, true);
echo '<li class="rant-comment-row-widget" data-id="829770" data-type="rant"><div class="rantlist-title-text">';
@ -81,10 +72,7 @@
echo ' src="';
echo $json{src}; echo '" href="';
echo $json{href};
echo '" width=100%></ul></div>';
}
closedir($handle);
}
echo '" width=100%></ul></div>'
?>