PHP 九九乘法表

html




    九九乘法表


    


        

        
    


php
  $tid=$_POST['tid'];
  $gh;   
  $fh=fopen('./table.text','a'); 

  for($i=1;$i<=$tid;$i++)    
  {         
      for($j=1;$j<=$i;$j++)        
        {             echo"$i*$j="$i*$j."     ";          
                      fwrite($fh,"$i*$j=".$i*$j."  ");          }      

   fwrite($fh,"\n");        

  echo '
';                 }                 

 fclose($fh);              

    ?>
   $_post与$_get的区别:
$_get:通过地址栏传输
$_post:用户看不到
*php应该与html中method=""一致

*php中$_POST['tid']应与name="tid"保持一致

fopen('./文件名.txt','a')
fwrite
fclose


r:只读(覆盖性)
a:读(可以接着继续读)

 

你可能感兴趣的:(php)