用php做个简单的日历
存档: index.php 1 <html> 2 <head> 3 <title>日历</title> 4 <style> 5 table{border:1px solid #050;} 6 .fontb{color:white;background:blue;} 7 th{width:30px;} 8 td,th{height:30px;text-align:center;} 9 form{margin:0px;padding:0px;} 10 </style> 11 </head> 12 <body> 13 <?php 14 require "calendar.class.php"; 15 echo new Calendar; 16 ?> 17 </body> 18 </html> calendar.php 1 <?php 2 class Calendar{ 3 private $year; 4 private $month; 5 private...