Parent Directory
|
Revision Log
|
Patch
| revision 1.13 by tbm, Sun Jul 15 13:44:24 2001 UTC | revision 1.14 by tbm, Sun Jul 15 13:45:41 2001 UTC | |
|---|---|---|
| # | Line 76 You should not be here!</STRONG> | Line 76 You should not be here!</STRONG> |
| 76 | ||
| 77 | function print_date($title, $name, $date) { | function print_date($title, $name, $date) { |
| 78 | ||
| 79 | parsed_date = split("-", $date); | $parsed_date = split("-", $date); |
| 80 | $year = parsed_date[0]; | $year = $parsed_date[0]; |
| 81 | $month = parsed_date[1]; | $month = $parsed_date[1]; |
| 82 | $day = parsed_date[2]; | $day = $parsed_date[2]; |
| 83 | ||
| 84 | echo "<TR><TD>$title</TD><TD><SELECT name = \""; | echo "<TR><TD>$title</TD><TD><SELECT name = \""; |
| 85 | echo $name; | echo $name; |
|
||||||||
| ViewVC Help | |
| Powered by ViewVC 1.1.5 |