close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

Selecting records from 12 month date range from 4 digit year.

Thread began 12/29/2011 6:50 am by Dennis | Last modified 1/01/2012 3:56 pm by Dennis | 1096 views | 2 replies

CraigRBeta Tester

what i would do is this.

store the date the dues payment was made, (YYYY-MM-DD) in your database.

in order to negate the need to change the 'active year' you could use some php using the current date.

For example...

if the current month is December, your active year is 1st december of this year to 30 november of next year.

if the current month is not December, your active year is 1st december of last year to 30 november of this year.

you can do that with something like this...

php:
<?php 
$activestartdate 
= (date('m')<12?date('Y')+1:date('Y')).'-12-01';
$activeenddate = (date('m')<12?date('Y'):date('Y')+1).'-11-30';
?>



you can then use these variables in your sql statement using datediff() to determine whose dues were paid within the active year

using a simple table as an example, with fields memberid, membername and paydate, i constructed a page with a recordset to return only the members whose payment was made in the active year.

you can find out more about the mysql function datediff here...

func_datediff_mysql.asp

Attached Files
datediff.zip

Build websites with a little help from your friends

Your friends over here at WebAssist! These Dreamweaver extensions will assist you in building unlimited, custom websites.

Build websites from already-built web applications

These out-of-the-box solutions provide you proven, tested applications that can be up and running now.  Build a store, a gallery, or a web-based email solution.

Want your website pre-built and hosted?

Close Windowclose

Rate your experience or provide feedback on this page

Account or customer service questions?
Please user our contact form.

Need technical support?
Please visit support to ask a question

Content

rating

Layout

rating

Ease of use

rating

security code refresh image

We do not respond to comments submitted from this page directly, but we do read and analyze any feedback and will use it to help make your experience better in the future.

Close Windowclose

We were unable to retrieve the attached file

Close Windowclose

Attach and remove files

add attachmentAdd attachment
Close Windowclose

Enter the URL you would like to link to in your post

Close Windowclose

This is how you use right click RTF editing

Enable right click RTF editing option allows you to add html markup into your tutorial such as images, bulleted lists, files and more...

-- click to close --

Uploading file...