Showing "New" image if date created <7

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

  1. #1

    Default Showing "New" image if date created <7

    I am trying to figure out how to show a 'New' image if the item was added to
    the database within the past 7 days. I tried to use this script and it shows
    the 'Just Added' image, but it does not go away when I change the date added to
    more than 7. Please advise. <% dtDateCreated =
    rsOTHEROTHEROTHER.Fields.Item('INVENTORYDATE').Val ue If DateDiff('d',
    dtDateCreated,dtToday) < 7 Then strImage = 'justadded.gif' Else strImage =
    'blank.gif' End If %> In my page: <img
    src='site_files/images/mis/<%=strImage%>' name='status' border='0' align='top'>

    WebSlave Guest

  2. Similar Questions and Discussions

    1. #39106 [Opn->Bgs]: date("w") incompatible with date("W")
      ID: 39106 Updated by: tony2001@php.net Reported By: felixmallek at gmx dot de -Status: Open +Status: ...
    2. Can't locate object method "newFromJpeg" via package "GD::Image"
      Hi. I'm trying to execute this Perl simple script: -------- #!/usr/bin/perl use GD; my $srcimage = GD::Image->newFromJpeg("image_news.jpg");...
    3. Distiller 5 created PDF showed broken "I" &"L" when viewed in Acrobat 6
      Distiller 5 on Mac OS 9. Acrobat 6 Pro on Mac OS X .3.4 I often receive PDF files (ver 1.3) from clients and used to view the files from Acrobat...
    4. #25366 [NEW]: form buttons of type "image" dont send "submit" $_POST variable in IE
      From: jordanolsommer at imap dot cc Operating system: Windows XP PHP version: 4.3.2 PHP Bug Type: Variables related Bug...
    5. Can you stop the "image"-button from showing?
      Hi, When you do mouseover over an image you often see this button with icons for saving, printing, email and open MyImagesFolder. But not...
  3. #2

    Default Re: Showing "New" image if date created < 7 days

    anyone?
    WebSlave 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