1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
?>
<html>
<head>
<title>JavaScript*·Toolbox*·-*·Calendar*·Popup*·To*·Select*·Date</title>
<script src="./CalendarPopup.js">
<script>
var cal = new CalendarPopup();
</script>
</head>
<body>
<form name="example">
*(aaaa)
<br>
*
<input type="text" size="25" value="" name="date1">
<a id="anchor1" name="anchor1" onclick="cal.select(document.forms['example'].date1,'anchor1','MM/dd/yyyy'); return false;" href="#">select</a>
</body>
</html> |