วันอาทิตย์ที่ 21 พฤษภาคม พ.ศ. 2560

ดูข้อมูลในแฟ้มต่าง ๆ ด้วยโปรแกรม php

ดูข้อมูลในแฟ้มต่าง ๆ ด้วยโปรแกรม php
: โปรแกรมนี้ช่วยให้ดูแฟ้มต่าง ๆ ในระบบโดยไม่ต้องเข้า Linux ไม่ควรใช้ถ้าผู้ให้บริการไม่ยอมให้ใช้ ลองถามเขาก่อนใช้นะครับ
    ตัวอย่างโปรแกรม lastmsg.php
    <form action=http://www.isinthai.com/lock/lastmsg.php method=get>
    File: <input name=file value=messages>
    Line: <input name=l value=20>
    Password: <input name=p type=password value=suwit>
    <input type=submit value=tail>
    </form><font face='courier new'><pre>
    <?
    if ($_GET['p'] == "prasert") {
    $x = "tail --lines=" . $_GET['l'] . " ". $_GET['file'];
    echo `$x`;
    }
    ?>
    

ไม่มีความคิดเห็น:

แสดงความคิดเห็น

Set MongoDB in the windows path environment

  Let’s set MongoDB in the windows environment in just a few steps. Step 1: First download a suitable MongoDB version according to your mach...