我正在创建的博客为博客帖子的“标题”创建了一个文件,为实际博客“条目”创建了另一个文件,然后将这些文件保存在名为“ent”的文件夹中
我试图显示标题,然后输入文字应该低于它。使用我到目前为止的代码它显示所有标题,但在每个标题下它只显示1个文本条目和它相同的一个。 我还需要订购它,以便最新的条目出现在顶部,但我不知道我会怎么做。
非常感谢帮助!!! < 3
我的代码如下:
$titlecount = 0;
$textcount = 0;
foreach(glob("ent/title*.txt") as $title){
$titlecount++;
$title_handle=fopen($title,"r");
while(!feof($title_handle)){
$title =fgets($title_handle);
echo "<h2 align='center'>$title</h2>";
echo"<h1 align='right'>$titlecount</h1>";
}
foreach (glob("ent/text*.txt") as $file) {
if($textcount<$titlecount){
$file_handle = fopen($file, "r");
while (!feof($file_handle)) {
$line = fgets($file_handle);
$textcount++;
echo "<p align='center'>$line</p>";
echo"<p align='right'>$textcount</p>";
}
} else {
break;
}
}
}