html文件中的两个php脚本..包括一个不显示的php

时间:2014-11-18 21:33:43

标签: php html

我正在尝试创建一个简单的表单来显示基本表和删除查询... 我可以让删除查询工作,但当我使用包含它不起作用,如果我在浏览器中单独运行'display.php'文件它运行完美并显示数据库......

任何人都可以建议在这个html文件中合并display.php文件的最佳方法是什么?或解释一下这个问题?

<!DOCTYPE html>



        <div id="content">
            <?php include('display.php')?>

            <div id="sidebar"></div>

            <div id="footer">
                <h5></h5>
            </div>

            <table>
                <tr>
                    <td>
                        <form action="delete.php" method="post"></form>

                        <table border="0" cellpadding="3" cellspacing="1" style="background-color: #536977" width="100%">
                            <tr>
                                <td width="150">Enter Username to be deleted</td>

                                <td width="6">:</td>

                                <td width="294"><input name="delusername" type="text"></td>
                            </tr>

                            <tr>
                                <td>&nbsp;</td>

                                <td>&nbsp;</td>

                                <td><input type="submit" value="submit"></td>
                            </tr>
                        </table>
                    </td>
                </tr>
            </table>
        </div>
    </div>

1 个答案:

答案 0 :(得分:0)

<?php  require_once('display.php'); ?>

假设他们在同一个文件夹中。