Jump to content

**solved**mktime() and Date() functions


genu

Recommended Posts

Hi, I have this setup:

[code]
    while($row = $mysqldb->fetchObject()) {
        $today = time();
        $date = $row->startdate;
        $d = split("-",$date);
        $date_seconds = mktime(0,0,0,$d[1],$d[2],$d[0]);
        if ($today > $date_seconds) {
              //DO SOMETHING
[/code]
but the end result is this:
http:genuchelu.redirectme.net/youth.php

Before this query I have a query to extract all the article for that day, and this I have the query above to extract the articles from the past. After the current day articles are extracted, for some reason, query above starts extracting the past article STARTING with the current date. WHY IS THAT? I specifially put to be ">" as in to extract everything smaller, not ">=".

any help is appreciated.

this is my first time usage of these type of functions.
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.