上一页 1 ··· 9 10 11 12 13
摘要: 表单数据如何提交给php文件 <form action="del.php" method="post"> 1.text数据 <input type="text" name="username"> 2.password数据 <input type="password" name="pwd"> 3.ra 阅读全文
posted @ 2020-04-24 19:05 前端乔 阅读(394) 评论(0) 推荐(0) 编辑
摘要: <!doctype html><html lang="en"><head> <meta charset="UTF-8"> <title>index</title> <style> *{ font-family: 微软雅黑; } </style></head><body> <center> <h2>日 阅读全文
posted @ 2020-04-22 17:27 前端乔 阅读(174) 评论(0) 推荐(0) 编辑
摘要: <?php echo '<h1>while循环输出九九乘法表<h1>';$i=1;while ($i<=9) { $j=1; while ($j<=$i) { echo "$j*$i=".($j*$i); echo "&nbsp;"; $j++; }echo '<br>';$i++; }//for循 阅读全文
posted @ 2020-04-22 16:28 前端乔 阅读(588) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13