close ad
 
Important WebAssist Announcement
open ad
View Menu

Technical Support Forums

Free, outstanding support from WebAssist and your colleagues

rating

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 | 1097 views | 2 replies |

Dennis

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

Hi,

I started to post this question in the SA forum because I want this criteria to control login, but I also want to use it on other pages in recordsets (select statements, queries). Please forgive my lack of knowing the correct terms.

For many of our club activities, especially logging into the Members Only page (login pages created with SA), I would like to be based on the member being current in their dues. I have a column “Dues_Paid” which contains the 4 digit year that the member has paid and is considered “Current”. The date range of December 1st to the following November 30th further defines “Current”

What php code would I add (to the select statement) to select records where “Dues_Paid” equals any date within the range of December 01 to November 30 of the current year?

As I am a rookie please be as specific as possible with your suggestions.

Thanks,
Dennis

Sign in to reply to this post

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
Sign in to reply to this post

Dennis

Thank You Craig

Happy New Year to All,

Craig,

Thank you very much for your suggestion and example code, I appreciate it a lot. I haven't had a chance to go through it yet, I will in the next few days. But I wanted to post my thanks.

Dennis

Sign in to reply to this post

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...