douzhong8856 2018-08-24 17:17
浏览 42

如果条件为真,如何使用PHP播放视频

This file takes password input.

<html>
   <form action="playvideo.php" method="post">
   <input type="text" name="password"/>
   <input type="submit">
</html>

This file plays the video

<?php
if(isset($_POST["password"])){
   $password=$_POST["password"];
}
else{
   $password="";    
}
if($password!="pass"){  
   echo "unauthorised";
}
else{
   $local_file = 'video.mp4';
   $size = filesize($local_file);
   header("Content-Type: video/mp4");
   header("Content-Length: ".$size);
   readfile($local_file);
}
?>

Also the code works fine if I do not wrap it inside an if statement.

  • 写回答

3条回答 默认 最新

  • duanchun1881 2018-08-24 17:25
    关注

    little changes needed....

    you may try like

    <?php
     if((isset($_POST["password"])) && (!empty($_POST['password']))) {
       $password=$_POST["password"]; //recommended to sanitize this input value
          if($password!="pass"){  
              echo "unauthorised";
          }else{
              $local_file = 'video.mp4';
              $size = filesize($local_file);
              header("Content-Type: video/mp4");
              header("Content-Length: ".$size);
              readfile($local_file);
          }
    }else{
        echo 'password is not provided';
    }
    ?>
    
    评论

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题