Up Motion 動画ページ 作成: 2021-02-15
更新: 2021-02-16


    Apache のドキュメントルート / に対し,ディレクトリ
      /motion
    に,Motion 動画を表示する index.phtml をつくる:
    <?php

     $dir = "./storage/";
     $url = "http://192.168.1.150:8081";

     print "
     <html>
      <head>
       <title>Remote Camera</title>
      </head>
      <body>
       <center>

       <img src=\"".$url."\" />
       <br><br><br>

       <a href=\"./index.phtml\">Show the last list of stored files</a>
       <br>

       <table border=1 cellspacing=0 cellpadding=20><tr><td>
       <font size=\"-1\">
     ";
     if( $dh = opendir( $dir ) ) {
      while ( ( $file = readdir( $dh ) ) !== false) {
       print $file."<br>";
      }
      closedir( $dh );
     }
     print "
       </font>
       </td></tr></table>
       <br><br><br>

       </center>
      </body>
     </html>
     ";
    ?>