.jsp文件中的Php代码无效

时间:2017-11-23 13:46:47

标签: php html

我的PHP代码在一个jsp文件里面,它包含html代码和php代码不起作用。我想将文本文件中的详细信息显示到html表中。我的文本看起来像这样,

  

{“问题类型”:“安全”,“描述”:“xyz”,“应用程序   名称“:”Whatsapp“,”标题“:”abc“,”问题ID“:1}

我尝试使用以下代码..

<table>
        <tr>
            <th>Issue Id</th>
            <th>Title</th>
            <th>App Name</th>
            <th>Issue Type</th>

        </tr>

        <?php
$file_handle = fopen("IssueDetails.txt", "rb");

while (!feof($file_handle) ) {
    $line_of_text = fgets($file_handle);
    $parts = explode(':', $line_of_text);
    echo "<tr><td >$parts[0]</td><td >$parts[1]</td><td >$parts[2]</td><td >$parts[3]</td><td >$parts[4]</td></tr>";
}
fclose($file_handle);
?>
    </table>

0 个答案:

没有答案