⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bydate.php

📁 it is a flat calender
💻 PHP
字号:
<script language="php">
Function GetDates()
{
	global $HTTP_POST_VARS;
	$dateList=$HTTP_POST_VARS["allSelected"]; 
	$dates = split( ',', $dateList);
	$tempstr="Date list(sorted by user selected):"."<br>"; 
	for ($i = 0; $i < count($dates); $i++) {
		$tempstr=$tempstr.$dates[$i]."<br>";
	}
	return $tempstr;
	
}

</script>
<?php
		$returndate=GetDates();
		echo $returndate;
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -