php如何保存帖子并将节目保存到这样的php文件中

时间:2016-12-09 03:39:38

标签: javascript php html sql

enter image description here

indext.php -

1. text field to to enter value like **[text abc]**
2. save text button
3. change text button

view.php -

此页面显示来自indext.php

的文本中的文本

1 个答案:

答案 0 :(得分:-1)

如果不了解您的全部要求,这应该可以帮助您入门。我想你会想要将保存/更改的文本存储到数据库中。如果是这种情况,您需要建立在下面提供的内容之上。希望这会有所帮助。

    在此输入文字...
     
    

<?php

if( isset( $_POST['my_text'], $_POST['save'] ) && strlen( $_POST['my_text'] ) > 0 )
{
    $my_text = htmlspecialchars( $_POST['my_text'] )."\n";
    if( !file_put_contents( 'view.php', $my_text, FILE_APPEND ) )
    {
            echo "Unable to write to file";
    }
    else
    {
            echo "Content Saved";
    }
}
elseif( isset( $_POST['my_text'], $_POST['change'] ) && strlen( $_POST['my_text'] ) > 0 )
{
    $my_text = htmlspecialchars( $_POST['my_text'] )."\n";
    if( !file_put_contents( 'view.php', $my_text ) )
    {
            echo "Unable to write to file";
    }
    else
    {
            echo "Content changed";
    }
}
else
{
    echo "Please enter some text";
}

?>