摘要:
<?php //***************万年历的实现********************// //实现步骤 //1、获取当前日期信息年和月(默认为当前的年和月) $year=$_GET["y"]?$_GET["y"]:date("Y"); $mon=$_GET["m"]?$_GET["m"]:date("m"); //2、计算出当前月有多少天,和本月1号是星期几 $day=date("t",mktime(0,0,0,$mon,1,$year 阅读全文
摘要:
1、配置文件<?php //配置文件信息 define("HOST","127.10.0.1");//主机名 define("USER","xiuxiu");//用户名 define("PASS","123456");//密码 define("DBNAME","student");//数据库名 define("PAGESIZE","10");//页大小?>2、编辑界面<?php 阅读全文
摘要:
1、添加界面代码 1 <html> 2 <head> 3 <title>我的留言板</title> 4 </head> 5 <body> 6 <center> 7 <?php 8 include("common.php"); 9 10 ?>11 <form action="addInfo.php" method="post">12 <table width="400px" border=".. 阅读全文