会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
前端乔
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
2020年5月14日
时间函数实现万年历
摘要: <?php $time=time(); //计算当前年$year=$_GET['y']?$_GET['y']:date('Y',$time); //计算当前月$month=$_GET['m']?$_GET['m']:date('m',$time); //当前月总计多少天?$days=date('t'
阅读全文
posted @ 2020-05-14 15:23 前端乔
阅读(302)
评论(0)
推荐(0)
2020年4月24日
表单的提交获取
摘要: 表单数据如何提交给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 前端乔
阅读(404)
评论(0)
推荐(0)
2020年4月22日
while实现日历
摘要: <!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 前端乔
阅读(180)
评论(0)
推荐(0)
while,for循环输出九九乘法表
摘要: <?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循
阅读全文
posted @ 2020-04-22 16:28 前端乔
阅读(649)
评论(0)
推荐(0)
上一页
1
···
9
10
11
12
13
公告