PHP

PHP 数据类型 - 判断

2020-04-24  本文已影响0人  887d1fc86fe6





<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
</head>
<?php
  if (isset($_REQUEST['score'])) {
    $score = $_REQUEST['score'];
    if (is_numeric($score)) {
      if ($score >= 60) {
        echo '成绩及格了';
      }else{
        echo '成绩不及格';
      }
    }else{
      echo '成绩输入错误';
    }
  }
?>
<body>
    <form action="" method="post">
      输入成绩: <input type="text" name="score">
      <input type="submit" value="提交">
    </form>
  <?php
  ?>
</body>
</html>
上一篇 下一篇

猜你喜欢

热点阅读