repost again :) sorry

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default repost again :) sorry

    Hi all


    any idea how to display specific record on current date and time of the day
    ...
    i did managed to display it for the date and drop it on specific date but
    couldn manage it to dispay on speci,fic time of the date (for example 6
    o'clock in the evening drop from the list)
    i work with ASP and access 2000 and i have done it like

    SELECT *
    FROM students_table
    WHERE students_pass_exam <=now
    ORDER BY students_pass_exam ASC

    So can u pls help me out how to do it to dissapear at the current time of
    the last day instead of after midnight of the last date ...


    Pls gimme some tips ..


    Rgrds MeTin


    MeTin Guest

  2. Similar Questions and Discussions

    1. Img Help (Repost as Cross)
      REPOSTED AS CROSS POST. I'm working on a button script that creates an Image, puts a button design on it and puts the text of the button into the...
    2. REPOST [configuring RDS on 2K3 IIS 6.0]
      REPOST FROM Hi, I'm having trouble configuring RDS on an IIS 6.0 server. I've followed all KB articles I've found on it but it still doesn't...
    3. Repost, sort of...
      What do "Image Interpolation" in the .EPS save dialog box and "Save Image Pyramid" in the .TIF save dialog do? Please be as technical as possible.
    4. Repost Search
      while( <FILEHANDLE> or <FILEHANDLETWO>) { $mesAlertes = <FILEHANDLE>; $mesAlertesDeux = <FILEHANDLETWO>; $final = ($mesAlertes, $mesAlertesDeux);...
    5. Re (repost): Is this a bug?
      I forgot to actually use ack vs. each below but either way I get the same behaviour... BTW I am using 1.6.8 on FreeBSD 4.8 Aryeh Friedman wrote:
  3. #2

    Default Re: repost again :) sorry

    Your students_pass_exam field must have a time. Then, kill the equal sign.
    WHERE students_pass_exam < NOW()

    If your field has a time, the comparison will end up being something like
    WHERE '2/28/2005 18:00:00' < '2/28/2005 07:25:57'

    So this record will still display, but at 6:00 tonight, it will no longer
    display on newly requested pages.


    "MeTin" <metinyaman@hotmail.com> wrote in message
    news:cvq326$8jn$1@forums.macromedia.com...
    > Hi all
    >
    >
    > any idea how to display specific record on current date and time of the
    day
    > ..
    > i did managed to display it for the date and drop it on specific date but
    > couldn manage it to dispay on speci,fic time of the date (for example 6
    > o'clock in the evening drop from the list)
    > i work with ASP and access 2000 and i have done it like
    >
    > SELECT *
    > FROM students_table
    > WHERE students_pass_exam <=now
    > ORDER BY students_pass_exam ASC
    >
    > So can u pls help me out how to do it to dissapear at the current time of
    > the last day instead of after midnight of the last date ...
    >
    >
    > Pls gimme some tips ..
    >
    >
    > Rgrds MeTin
    >
    >

    CMBergin Guest

Posting Permissions

  • You may not post new threads
  • You may 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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139