Jump to content

help with querying database


k4pil

Recommended Posts

Hi there people...

I have the following table in my database

activity (activityID, userID, time, page)

It keeps track of which page the users have visited and when, a bit like big brother i guess.

I have just finished a view activity script, where the user enters the name of a user and the script outputs the activity of the user specified.

However, if the user has been busy, this can be many (100's) of rows of data. I need to allow the user to search a specified date range, i.e. 15 January 2005 - 15 January 2006.

How can i do this???

The date is stored as;
Friday 24th of February 2006 05:24:39 PM

Any suggestion???

Regards pps
Link to comment
https://forums.phpfreaks.com/topic/4012-help-with-querying-database/
Share on other sites

Hi,

Is your time stored as a date or as a string?

If it's a string you hav a BFP. (The B stands for Big and the P for Problem)
But if it is stored as date or timestamp you can query on it. The where-statement should look like this:
[code]
WHERE time BETWEEN '2005-01-16' AND '2006-01-15'
[/code]
[!--quoteo(post=352578:date=Mar 7 2006, 02:25 PM:name=k4pil)--][div class=\'quotetop\']QUOTE(k4pil @ Mar 7 2006, 02:25 PM) [snapback]352578[/snapback][/div][div class=\'quotemain\'][!--quotec--]
Well the way the date is stored is;

$time = date('l dS \of F Y h:i:s A');

and $time is inserted into the database. Any suggestions??
[/quote]

Ugh.. re-factor and use the database specified types... There are a multitude of date/time types available in MySQL and they all have associated functions to allow for simpler searching.
XenoPhage was totally right.

I used timestamp which is a datatype provided be mySql and everything is soooo much easier.

For the benefit of webezine il go over what i have.

Firstly a table called activity which lists the activity of users;
activity(activityID, userID, time, pageAccessed)

[code]
$query = "INSERT INTO activity VALUES ('', '$userID', NOW(), '$pageTitle')";
    $result = mysql_query($query);
[/code]

When i created the table in mySql, the syntax was something like

[code]
CREATE TABLE `activity` (
`activityID` INT( 11 ) NOT NULL ,
`userID` INT( 11 ) NOT NULL ,
`time` TIMESTAMP NOT NULL ,
`page` VARCHAR( 20 ) NOT NULL ,
UNIQUE (
`activityID`
)
) TYPE = MYISAM;
[/code]

Archived

This topic is now archived and is closed to further replies.

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