04 2020 档案
摘要:表单数据如何提交给php文件 <form action="del.php" method="post"> 1.text数据 <input type="text" name="username"> 2.password数据 <input type="password" name="pwd"> 3.ra
阅读全文
摘要:<!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style></head><body> <center> <h2>日
阅读全文
摘要:<?php echo '<h1>while循环输出九九乘法表<h1>';$i=1;while ($i<=9) { $j=1; while ($j<=$i) { echo "$j*$i=".($j*$i); echo " "; $j++; }echo '<br>';$i++; }//for循
阅读全文