Messed up again! Help to display current day and date ...

Sorry guys and gals, I messed up again due to my noobidity, but you know the two most abundant things in the universe, are hydrogen ..... and noobidity!.
I have this page http://www.poffertjes.ch/index.html that nicely states the current day and date and it also works on all subsequent pages.
I needed a new page and figured I could just copy the code to the same position on this page: http://ppbm5.com/submission.html but behold, it just is not displayed at all.
I have been going over the code many times, but I can't figure out why the current date is not displayed at all. Can someone please show me what I did wrong?

Harm,
I gain 5 pounds each time I look at your site. 
Maybe this link will help you:
http://www.mediacollege.com/internet/javascript/date-time/
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • Keyboard shortcuts: current day and date, and current time?

    I would like to know keyboard shortcuts for entering current day and date, and current time (separated entries) in Numbers. Something that Excel does easily. Thank you, Ian

    Ian,
    Numbers does not have predefined key command for Insert Date & Time as you can see from this screenshot:
    All menus show the key commands on the very right (if there is a ke command).  You can add you own, custom, key commands by opening system preferences and selecting the Keyboard panel, then the "Keyboard Shortcuts" segment:
    Click the "+" then a modal dialog will appear.   Select the application from the pop, then enter the exact name if the menu item, and, finally, your desired key combination:
    You can do this for any application

  • Current day and date

    I've created a fairly simple website in which I've inserted
    the day and date and want it to update automatically according to
    my location, which is the same as the server. Currently, it is in
    the following format: Friday, March 14, 2008. I've not been able to
    find a simple, clear, step by step answer in my online searches. I
    am not a programmer so if you tell me about code you may need to
    provide a little extra detail. Do I need to create an html or shtml
    page for this code instruction or can I simply insert some magic
    code into my current html page? Thanks for your time and help with
    this!

    DJenae wrote:
    > <script>
    > document.write(new Date());
    > </script>
    >
    > Mick
    >
    >
    > Thanks Mick but this didn't work either. It must be the
    placement. Please read
    > the 2 posts before yours to see how I inserted the code
    suggestions. This is
    > that section of code that includes what you sent me.
    >
    > <tr>
    > <td width="558" height="33" valign="middle"
    class="style1"><script><br />
    > document.write(new Date());<br />
    > </script></td>
    > </tr>
    >
    <tr>
    <td width="558" height="33" valign="middle"
    class="style1">
    <script>
    document.write(new Date());
    </script>
    </td>
    </tr>
    Note removal of breaks, and BTW "height" is an illegal
    attribute for <td>
    Another way:
    <script>
    Date.prototype.normal=function(){
    return
    ["Sun","Mon","Tue","Wed","Thu","Fri","Sat"][this.getDay()]+
    ", "+
    ["Jan","Feb","Mar","Apr","May","Jun",
    "Jul","Aug","Sep","Oct","Nov","Dec"][this.getMonth()]+
    " "+
    this.getDate()+
    ", "+this.getFullYear();
    </script>
    <tr>
    <td width="558" height="33" valign="middle"
    class="style1">
    <script>
    document.write(new Date().normal());
    </script>
    </td>
    </tr>
    Mick

  • Display current time and date

    How to display current date and time together in pl sql block
    i have written code below but it gives me error
    SET SERVEROUTPUT ON
    DECLARE
    TODAY DATE;
    BEGIN
    SELECT CURRENT_DATE || TO_CHAR(CURRENT_DATE, 'FM HH:MI:SS AM') INTO TODAY
    FROM DUAL;
    DBMS_OUTPUT.PUT_LINE('TODAY');
    END;
    ERROR at line 3:
    ORA-01830: date format picture ends before converting entire input string
    ORA-06512: at line 4

    Here's how you do it:
    DECLARE
    TODAY varchar2(100);
    BEGIN
    SELECT TO_CHAR(CURRENT_DATE, 'MM-DD-YYYY HH:MI:SS AM') INTO TODAY
    FROM DUAL;
    DBMS_OUTPUT.PUT_LINE(TODAY);
    END;
    Notes:
    1. You select to_char(...) into today, so today should be declared as char, not date.
    2. dbms_output.put_line('today') will print "today", you want to print the variable not the string, so no quotes.
    3. date variables contain both date and time, no need to concatenate

  • Report for current day and current month

    Hi gurus,
    i 've a report, where i 've to display the values for qty and cost of the material for the current day and current month
    HOw can i do this in BEx Query designer..If any document plz share
    thanks
    rakesh

    hi Kolli
    here i want to filter the data on system date,
    i wnt the report to pick the date dynamically based on the system date.
    but i think restricting on calmonth and calday is not going to solve my scenario..
    rakesh

  • How to display Current Year and Month in Drop Down list

    Hi Dear friends,
    I am devloping a report. It has got 2 pages--input and output(Report) page.
    IN input page, user will select Month and Year from drop down list as one of the input parameters. (seperate drop down list 4 month and year)
    Now, my problem is:
    HOw to display current month and year by default in the dropdown list...........
    I hope my question is clear.
    Please help.
    Regards,
    ASh

    NO da,
    it is not working.
    First i tired with for-loop. I initialized variable "i" to -2 (i=-2) I would get the year drop down list from 2003 but, by default 2003 would come.
    So, i posted the question.
    I tried your code. It is giving following error.
    A Servlet Exception Has Occurred
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occured between lines: 122 and 127 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:182: Invalid type expression.
    first.set(Calendar.YEAR, 2003)
    ^
    An error occured between lines: 127 and 131 in the jsp file: /test/inpt.jsp
    Generated servlet error:
    C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:186: Invalid declaration.
    out.write("\r\n \r\nYear : \r\n \r\n"); ^ An error occured between lines: 198 and 203 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:282: Invalid type expression. first1.set(Calendar.YEAR, 2003) ^ An error occured between lines: 203 and 207 in the jsp file: /test/inpt.jsp Generated servlet error: C:\Program Files\Apache Tomcat 4.0\work\localhost\general\test\inpt$jsp.java:286: Invalid declaration. out.write("\r\n \r\nYear :\r\n \r\n");
    ^
    4 errors
    Pls. Help.
    Regards,
    Ashu

  • Difference Between Current Day and fist day of the payroll period

    Hi,
    How do i find the difference between the current day and the first day of the payroll period with period parameter XX.
    Operation VARSTFDYXX is used to decide if the current day is the first day of the payroll period. But is there any operation available to check the difference in exact number of days.
    I know hrs=y is used to find difference between current day and a date specification record from IT0041, but i need to check difference between current day and first day from a payroll period parameter.
    Any response is greatly appreciated.
    Thanks,
    Imaneul Rajiv

    No! haven't seen it at all! Do I have to drain the battery completely and then charge it? I did that the first day I bought the phone and yet the stats are the same for me
    PS: I am referring to the Call Time stats and not the Usage/Standby stats

  • Current day and no of days in current month

    Hi all,
    can anbody tell me which object is used for current day and no of days in current month.

    Hi,
    USe /OSP/GET_DAYS_IN_MONTH Function Module, just give Date you will get No. Of days in that Month.
    Use SY-DATUM for current date.
    Ex:
    Data: dt type SY-DATUM.
    dt = SY-DATUM.
    so you get current date in dt.
    Thanks
    Reddy

  • I am trying to download a movie and get the message: "An unknown error occured (5002).  There was an error in the iTunes Store.  Please try again later."  Waited a day and still get the message.  Have downloaded movies before.

    I am trying to download a movie and get the message: "An unknown error occured (5002).  There was an error in the iTunes Store.  Please try again later."  Waited a day and still get the message.  Have downloaded movies before.

    Did you ever get an answer?

  • My phone displays "Network search". Current time and date. When the SIM is inserted and when there is no sim

    My phone displays "Network search". Current time and date. When the SIM is inserted and when there is no sim.

    Hi, AlexKot.  
    Thank you for visiting Apple Support Communities.
    It sounds like you are experiencing an issue with your iPhone searching for service.  If you have not resolved this issue, I would recommend trying the troubleshooting steps in the article below.
    If you see No Service or Searching in the status bar of your iPhone or iPad
    http://support.apple.com/kb/ts4429
    Cheers,
    Jason H.

  • TS4268 I've tried the listed troubleshooting procedures to activate Facetime and iMessage, but no luck. Are there any other options? If it helps, I'm currently overseas and only using WiFi to connect.

    I've tried the listed troubleshooting procedures to activate Facetime and iMessage, but no luck. Are there any other options? If it helps, I'm currently overseas and only using WiFi to connect.

        lovethoseleaves,
    Oh no! I am saddened to hear that you are having troubles with your MMS pictures. I know that this can be an important thing to be able to do. I appreciate you working with us to get this matter resolved as well. I see that you have spent time working with us, and I know that can also be frustrating. There are a few things we can check though. Are these to any specific numbers or all? A factory reset certainly should've resolved this. We can check into the account set up as well for that if need be. Please share any additional details that you can think of. Thanks.
    ErinW_VZWSupport
    Follow us on Twitter @VZWSupport

  • My phone displays "Network search". Current time and date. When sim sim svtavlena and when there is no

    My phone displays "Network search". Current time and date. When sim sim svtavlena and when there is no.
    Мой айффон постоянно пишет поиск сети, даже если достать сим карту. Дата и время тоят правильно, сброс сети я пробовал, не помогает.

    Hi, AlexKot.  
    Thank you for visiting Apple Support Communities.
    It sounds like you are experiencing an issue with your iPhone searching for service.  If you have not resolved this issue, I would recommend trying the troubleshooting steps in the article below.
    If you see No Service or Searching in the status bar of your iPhone or iPad
    http://support.apple.com/kb/ts4429
    Cheers,
    Jason H.

  • Printing current time and date on a pdf document

    I wish for a pdf document to print the current time and date in the same place at the foot of each page, to the following format:
    Aug 04 2009, 5:11 pm.
    How do I do this please? Annoyingly I have managed it in the past, but when I open up my old documents and paste the relevant field into my new document, it either prints the old date/time or else prints the present date/time, but then doesn't refresh the next time I try to print - ie it stays at one date/time.
    I'd like to start again from scratch so that I have a better idea of how it works!!
    Regards
    Tony

    Eureka!
    I now have the answer, and hopefully this will help anybody else with a similar problem.
    In Acrobat:
    Create a text field and place it in the chosen place on the pdf form. Label it "datebox" in the General tab of Text Field Properties, and apply your character styles in the Appearance tab.
    Under the "Advanced" menu, go to "Document Processing" and then "Set Document Actions"
    Click on "Document Will Print" and then hit the "Edit" button. In the "JavaScript Editor" paste the following:
    var myfield=getField("datebox");
    var date=new Date();
    date=util.printd("mmm dd yyyy, h:MM tt", date);
    myfield.value=date;
    Hit OK.
    You have now given the instruction that whenever you print, the field named "datebox" will print the current time and date in the following format:
    Aug 05 2009, 9.37 am
    Regards
    Tony

  • Date selection - Disable certain days and dates

    Hello!  In an Adobe Form, is it possible to disable certain days and date ranges in the date chooser (calendar)?  For example, I want to disable all Sundays as well as dates more than one month in the past.
    I've found examples for Adobe Flex, but the disabledDays and selectableRange properties don't seem to effect the date boxes in Adobe Forms.  Search for disabledDays on this page to see an example:
    http://livedocs.adobe.com/flex/3/html/help.html?content=controls_12.html
    I realize it's possible to do validation after the date has been selected, but this is not an ideal solution.
    Thanks,
    Scott

    Well sometimes workarounds are needed to cater to certain requirements and since this is a limitation currently, I think you would better opt for validation after date selection.

  • Using SQL stored procedures How to get the list of .rar files from e:\Tempbackup directories from the different remote desktop windows server and delete the .rar files which contains the current month and date

    Concept:
    Every month i need to find the list of .rar files from the
    E:/TempBackup directory from the different environments (remote desktop servers) and i need to delete the current month
    .rar files alone from the respective (E:/TempBackup) directory. below is example files structure inside the
    E:/TempBackup.
    example:
    zDROP_2014_08_31_Backups.rar
    zDROP_2014_09_31_Backups.rar
    zDROP_2014_10_31_Backups.rar
    from the above list i need to delete the zDROP_2014_08_31_Backups.rar(current month) file alone and also logs should be capture for this deletion.
    key words for this are zDROP and Current month and date.
    i need a stored procedure for this concept. could you please help on this.

    Hello,
    You can schedule an operating system task (Control Panel -> Schedule task) to either call a batch file or a PowerShell script.
    Please read the following resources for examples:
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/61373719-fffb-4d94-bdbe-7d8ed8620b44/delete-filesfolders-on-remote-servers-using-powershell?forum=winserverpowershell
    http://www.networknet.nl/apps/wp/archives/943
    http://jeffwouters.nl/index.php/2011/10/powershell-script-to-delete-files-older-that-a-week/
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

Maybe you are looking for

  • Please Help-Mac Newbie-Am I Supposed to have Appletalk? MenuCracker?

    Hi there, I'm hoping you'll take pity on me...:) I purchased a MBP in May and everything has been cooking along nicely--until... Over the past few days it has been acting a bit of squirrely. I purchased a new iPod touch 3 days ago and tonight it woul

  • Insert record in master detail relationship

    Hi, I have the following situation. I have two tables (master and detail in 1:1 relationship). What I want to do is to skip through the master table and insert a record into the detail table containing only the id of the master table (foreign key col

  • Uploading in CCM

    Hii all, Here I have a situation where I have a catalog already uploaded in the system,now I want to make changes to the schema of that supplier catalog and I need to change the schema of the procurement catalog also related to that supplier catalog

  • Error I don't know how to fix myMessage.text

    Hi, I am getting an error on the below piece of code, the error is showing on the myMessage.text:@"hello xcode"; can anyone see where I'm going wrong?, I am following a self teach manual. Thanks in advace. UILabel *myMessage;    myMessage=[[UILabel a

  • I have recently found an iphone with a passcode and i need to know if there is anyway to find out who it belongs to, please help.

    i have found this iphone 4 down the local pub and i have had it in my possession for almost a month now and none has come to claim it, is there anyway to find out who it belongs to or if i could find out stuff about them like maybe a home contact but