<html> <head><title>Fram.Modify.com</title></head> <body> <h1>กระดานข่าว หน้าเว็บหลัก</h1> <?php $content = fopen("webboard.txt", "r"); fpassthru($content); ?> <p> <a href="edit.php">แก้ไขข่าว</a> </body> </html>
<html> <head><title>Fram.Modify.com</title></head <body> <form action="check_edit.php" method="post"> รายละเอียด <textarea name="txt" cols="80" rows="3" style="margin-bottom:50px;"></textarea><p> <input type="submit" value="ตกลง" /> </form> </body> </html>
<?php $content = fopen("webboard.txt", "w"); $text = $_POST['txt']; fputs ($content,$text); if(($text=="$text")) { echo "บันทึกเรียบร้อย"; echo "<a href=index.php>หน้าหลัก</a>"; } ?>