使用php

时间:2019-06-08 17:16:27

标签: php html

我在html页面中有一个div,我想在其中加载verslag.text的内容。我尝试使用包含的恐惧,但无法正常工作。

我的文本文件包含:

07-Jun-2019 21:41,vrijdag,dfwnfql,8
07-Jun-2019 21:43,vrijdag,rfqe,
07-Jun-2019 22:10,vrijdag,kjvwekvn,

我想将其更改为带有html标签的文本,例如:

<table style="width:50%">
<tr>
<th>Japan</th>
</tr>

所以我可以使用一些html化妆。

我有以下代码:

<div class="col-md-12" id="middev"><p>buttonclass="knop"type="button"name="divindex">Home</button>
<button class="knop"type="button"name="toonverslag">Verslag</button>
<button class="knop" type="button" name="route">Route</button>
<button class="knop" type="button" name="links">Links</button></p>
<p>test tekst</p>
<p><?php include 'verslag.text';
echo "testing"?></p>
</div>

如何在网页上显示文本文件的内容?如何处理html标签?

2 个答案:

答案 0 :(得分:0)

首先,您必须使用非html页面来加载此文本页面。可以按照以下方式使用

text.php

<table style="width:50%">
<tr>
<th>Japan</th>
</tr>

main.php

<div class="col-md-12" id="middev"><p>buttonclass="knop"type="button"name="divindex">Home</button>
<button class="knop"type="button"name="toonverslag">Verslag</button>
<button class="knop" type="button" name="route">Route</button>
<button class="knop" type="button" name="links">Links</button></p>
<p>test tekst</p>

<p><?php include 'text.php'; ?> // set the path of text.php 
</p>
</div>

答案 1 :(得分:0)

您可以使用以下方法读取文本文件并逐行输出:

$file = fopen("inputfile.txt", "r");
if ($file) {
  while (($line = fgets($file)) !== false) {
      echo $line."<br>";
  }

  fclose($handle);
}else{
      echo "File does not exist!";}