-1

在我的名为“account.php”的 php 文件中,我有

<?php 
// First we execute our common code to connection to the database and start the session 
require("common.php"); 
// At the top of the page we check to see whether the user is logged in or not 
if(empty($_SESSION['user'])) 
{ 
    // If they are not, we redirect them to the login page. 
    header("Location: login.php"); 
    // Remember that this die statement is absolutely critical.  Without it, 
    // people can view your members-only content without logging in. 
    die("Redirecting to login.php"); 
}          
?> 
<html>
<body>
    <link rel="icon" type="image/gif" href="favicon.gif" />
    <?php include("header.php"); ?>
    <div id="main-box">
        <ul>
            <li class="buttons">
<?php 
//TEXT BOX WITH A LINE FROM **TEXT.txt** SHOULD APPEAR HERE AFTER USER CLICKS BUTTONS 
?>
                <input type="button" name="account" value="Get Your Account" onclick="#" />
            </li>
        </ul>
    </div>
</body>
</html>

我想要它,所以当用户单击按钮时,会出现一个文本框并显示文本文件中的一行,当他们查看它时,它会从文本文件中删除它。 文本.txt

Eddie so after the user clicks the button it displays this line to them and then deletes it after so that the next line would then become the first line. 
Apples
Hello
People

如果您不理解我的问题,请告诉我,我将尝试进一步解释。谢谢你。:)

4

1 回答 1

0

我的建议是使用 javascript(或 jQuery)对处理文本文件读取的 PHP 脚本进行 AJAX 调用,然后删除第一行。然后,javascript 需要获取脚本的响应(文本文件上的行)并将文本框添加到页面。

于 2013-01-09T06:21:10.810 回答