Quick Search for:  in language:    
Displays,calender,using,tables,highlights,cur
   Code/Articles  |  Newest/Best  |  Community  |  Jobs  |  Other  |  Goto  | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
Perl Stats

 Code: 74,273. lines
 Jobs: 24. postings

 How to support the site

 
Sponsored by:

 
You are in:
 

Does your code think in ink?
Login





Latest Code Ticker for Perl
Click here to see a screenshot of this code!CGIScripter
By David Simpson on 11/24

(Screen Shot)

Calender
By Jeff Mills on 11/20


quikpoll
By Jeff Mills on 11/20


Encrypt Password
By Jeff Mills on 11/20


Rock, Paper, Scissors w/ GUI
By Kurt Rudolph on 11/19


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!

Affiliate Sites



 
 
   

Calender

Print
Email
 
VB icon
Submitted on: 11/20/2003 8:53:35 AM
By: Jeff Mills  
Level: Intermediate
User Rating: Unrated
Compatibility:5.0 (all versions), 4.0 (all versions), 3.0 (all versions)

Users have accessed this code 150 times.
 

(About the author)
 
     Displays a calender using tables, It highlights the current date & shows day, month, year...
 
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!

    =**************************************
    = for :Calender
    =**************************************
    No copyright, If you use it please vote...
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

    =**************************************
    = Name: Calender
    = Description:Displays a calender using 
    =     tables, It highlights the current date &
    =     shows day, month, year...
    = By: Jeff Mills
    =
    = Inputs:No input parameters...
    =
    = Returns:Current calender display...
    =
    = Side Effects:No known buggs/side effec
    =     ts...
    =
    =This code is copyrighted and has    = limited warranties.Please see http://w
    =     ww.Planet-Source-Code.com/vb/scripts/Sho
    =     wCode.asp?txtCodeId=553&lngWId;=6    =for details.    =**************************************
    
    #!/usr/bin/perl
    #=== VARIABLES ===#
    $cal_prog="/usr/bin/cal";#cal program is usually /bin/cal or /usr/bin/cal
    $inner="#D3D3D3"; #Inside table color
    $width="WIDTH=\"30\"";#Inside table cell width
    $align="ALIGN=\"RIGHT\""; #Table cell align
    $color="COLOR=\"#003CBA\"";#The current date color
    @MONTH=(Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec);
    @DAY= (Sun,Mon,Tue,Wed,Thu,Fri,Sat);
    #=== GET DATE & ADJUST ===#
    (undef,undef,undef,$mday,$mon,$year,$wday,undef,undef) = localtime(time);
    $year += 1900;#ADJUST YEAR FROM 103 TO 2003
    if($mday<10) {$mday="0$mday";}#ADJUST DATE IF LESS THAN 10
    $mo_num=$mon+1;
    #=== START CALENDER TABLE ===#
    print <<HEADER;
    Content-type: text/html
    <TABLE BORDER=1 BGCOLOR=$inner>
    <TH><FONT $color>$DAY[$wday]  $MONTH[$mon] $mday  $year</FONT></TH>
    <TR><TD>
    <TABLE BORDER=1 BGCOLOR=$inner>
    <TR>
    HEADER
    for($cnt=0;$cnt<7;$cnt++) {
    print "<TD $align $width>$DAY[$cnt]</TD>\n";
    }
    print "</TR>";
    #=== START DATES ON EACH DAY ===#
    #THE 'if' below tosses out the first two lines and the last empty one
    open(INCAL,"$cal_prog $mo_num $year | ") or die "Can't run $cal_prog: $!";
    $cnt=1;
    while($in_line = <INCAL>)
    {
    if($cnt > 2 && $in_line ge " ")
    {
    chop $in_line;
    $sun=substr($in_line,0,2);
    $mon=substr($in_line,3,2);
    $tue=substr($in_line,6,2);
    $wed=substr($in_line,9,2);
    $thu=substr($in_line,12,2);
    $fri=substr($in_line,15,2);
    $sat=substr($in_line,18,2);
    print "<TR>\n";
    if($sun eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$sun</TD>\n";}
    if($mon eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$mon</TD>\n";}
    if($tue eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$tue</TD>\n";}
    if($wed eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$wed</TD>\n";}
    if($thu eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$thu</TD>\n";}
    if($fri eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$fri</TD>\n";}
    if($sat eq $mday) {print "<TD $align><FONT $color><B>$mday</B></FONT></TD>\n";}
    else{print "<TD $align>$sat</TD>\n";}
    print "</TR>\n";
    }
    $cnt++;
    }
    #=== END CALENDER TABLE ===#
    print <<FOOTER;
    </TABLE>
    </TD></TR>
    </TABLE>
    FOOTER
    close(INCAL);
    exit(0);
    #=== EOF jmills73@yahoo.com ===#


Other 2 submission(s) by this author

 

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Intermediate category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments

 There are no comments on this submission.
 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | Perl Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.