search

Home  >  Q&A  >  body text

作业及疑问

<form>
    <input type="text" name="num1">
    <input type="submit" value="计算">
</form>

<?php
    $num1 =$_GET['num1'];
    if(!is_numeric($num1)){
       echo '请输入年份';
    }
    if($num1%4=0 && $num1%100!=0){
       echo '闰年';
    }
    if($num1%400=0){
       echo '闰年';
    }
    if($num1%4!=0 | $num1%400!=0){
       echo '平年';
    }

/*疑问:我在本地写了这个,保存为html打开之后表单在,但是点了计算之后是空白页面。请问是我保存的方式不对吗?应该如何保存文件*/

>


新手上路请多关照新手上路请多关照2947 days ago1271

reply all(3)I'll reply

  • 2017-10-27 16:31:57

    Since it is the year, why do we need to use the is_numeric() function? The year should be an integer greater than 0

    reply
    0
  • 数据分析师

    数据分析师2017-10-01 00:47:20

    Assignments and questions-PHP Chinese website Q&A-Assignments and questions-PHP Chinese website Q&A

    Look around and learn.

    reply
    0
  • 大家讲道理

    大家讲道理2017-03-11 21:58:54

    保存为PHP文件。

    reply
    2
  • Cancelreply