+ Reply to Thread
Results 1 to 6 of 6

Thread: i want to put a date on my page that updates itself daily
      
   

  1. #1
    timhayes is offline Private
    Join Date
    May 2009
    Posts
    3

    Default i want to put a date on my page that updates itself daily

    anyone know how to do this i have seen it on a few peoples pages

  2. #2
    Join Date
    Mar 2006
    Location
    Mallorca, Spain
    Posts
    6,313

    Default Re: i want to put a date on my page that updates itself daily

    you can find one in the tips and tricks forum...................

  3. #3
    timhayes is offline Private
    Join Date
    May 2009
    Posts
    3

    Default i want to put a date on my page that updates itself daily

    i just want it to be plain and simple in arial size 10 font without the time or a border or a recangle or anything anyone know how i can do this?

  4. #4
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,354

    Default Re: i want to put a date on my page that updates itself daily

    Please dont duplicate posts. Did you LOOK for this script? do a search.. or even look on google. Im sure you will find a java script that does this.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  5. #5
    navaldesign's Avatar
    navaldesign is offline General & Forum Moderator
    Join Date
    Oct 2005
    Location
    Italy
    Posts
    12,052

    Default Re: i want to put a date on my page that updates itself daily

    Drag a HTML box in your page. Make it small, just the space that will display the date.

    Paste this code in:

    <font style="font-size:10px;font-family:Arial;" color=#000000>
    <div id="basicdate">
    </div>
    </font>
    <script language="JavaScript" type="text/javascript">
    var now = new Date();
    var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thu rsday','Friday','Saturday');
    var months = new Array('January','February','March','April','May',' June','July','August','September','October','Novem ber','December');
    var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();
    var year = (now.getYear() < 1000) ? now.getYear() + 1900 : now.getYear();
    today = days[now.getDay()] + ", " + months[now.getMonth()] + " " + date + ", " + year;
    basicdate.innerHTML = today;
    </script>
    Navaldesign
    Logger Lite: Low Cost, Customizable, multifeatured Login script
    Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
    DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
    Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!


  6. #6
    motoxxx is offline Major
    Join Date
    Dec 2005
    Posts
    343

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49