Jump to content

[SOLVED] Help using dates


kjtocool

Recommended Posts

I am pretty new to dates, and have never really worked with them before.  Now I am building an application which will need to compare dates, and where the date will play an important role, I am hoping you guys can help me with some simple questions I come upon as I go.

 

The first thing I am trying to do is create an Admin section which lets someone select a date at which to stop allowing users to predict something, and then select a date range which is used for something else.

 

All three dates are sent to PHP via post variables in the format DD/MMM/YYYY.  Examples:

 

Prediction End: 29/DEC/2007

Weekend Start: 31/DEC/2007

Weekend End: 31/DEC/2007

 

 

I then need to add a time (12:01 am) to the Prediction End time.  So I want it to be 29/DEC/2007 00:01:00.  And then I want to store all my values in my database.

 

So my first issue is, how should I go about re-formatting the dates my form is sending so that they will fit into valid MySQL date formats?  If I understand correctly, the values should be like '2007-12-29 00:01:00' right?

 

 

Questions:

 

1) Is 00:01:00 equal to 12:01 am?

2) How should I go about re-fomrating the given dates?  Should I write a function which takes DEC, JAN, etc and turns them to 12, 01, etc?  Is the easiest way to do that creating an exploding an array on "/"?  Can you explode as an associative array?

 

 

 

 

 

Link to comment
Share on other sites

I would use a JS Calendar to submit your dates through, that way you can ensure the data being inserted is correctly formatted.  You'll still have to validate the data just in case they have JS disabled.  The calendar I typically use is called jsCalendar at http://sourceforge.net/projects/jscalendar, and it supports selecting the time as well and will put it in any format you specify.

Link to comment
Share on other sites

Yeah, I am looking at it now, and it just uses one text field to show the date in, which, as you said, is better.  I'll give this a try and see if I can't get it to work.

 

In the meantime, can anyone tell me:

 

1) Is 00:01:00 equal to 12:01 am?

2) Is '2007-12-29 00:01:00' the format I should be storing if my MySQL database is expecting a DATETIME variable?

Link to comment
Share on other sites

With the calender you linked to, how do I properly change the format so that it will be as above?

 

When it's set as:

 

ifFormat       :    "%m-%d-%Y %I:%M %p",       // format of the input field

 

It returns: 12-12-2007 01:33 AM

 

I tried changing it to:

 

ifFormat       :    "%m-%d-%Y %H:%i:%s",       // format of the input field

 

But that didn't work.  Any suggestions, I didn't see any relevant examples in their documentation.

Link to comment
Share on other sites

ifFormat       :    "%Y-%m-%d %i:%M",       // format of the input field

 

Returns: 12-13-2007 %i:34

 

 

I tried this:

 

ifFormat       :    "%Y-%m-%d %I:%M",       // format of the input field

 

Returns: 12-13-2007 11:34

 

 

But in all honesty, I don't know why I'm even bothering, I should just take the time out, as I really want it hard coded as 12:01 am.  Nifty feature though.  Thanks for the help.

Link to comment
Share on other sites

OK, so I went ahead and utilized the date script you suggested.  It looks like this:

 

sdates2.JPG

 

The script is:

 

<?php
$prediction_end = $_POST['prediction_end'];
$prediction_end .= " 00:01:00";
$weekend_start = $_POST['weekend_start'];
$weekend_end = $_POST['weekend_end'];

$databaseConnect = mysqli_connect("localhost", "user", "password", "database")
		Or die("Unable to connect to the database.");

$query = "INSERT INTO bonanza_weeks VALUES (NULL, '$prediction_end', '$weekend_start', '$weekend_end')";
echo $query;

if (mysqli_query($databaseConnect, $query)) {
	echo "New week successfully created with values: <br /><br />";
	echo "Prediction End: " . $prediction_end . "<br />";
	echo "Weekend Start: " . $weekend_start . "<br />";
	echo "Weekend End: " . $weekend_end . "<br />";
}
else {
	echo "Unable to create new week.";
}

mysqli_close($databaseConnect);
?>

 

 

Output of the script is:

 

INSERT INTO bonanza_weeks VALUES (NULL, '12-28-2007 00:01:00', '12-28-2007', '12-30-2007')

New week successfully created with values:

Prediction End: 12-28-2007 00:01:00
Weekend Start: 12-28-2007
Weekend End: 12-30-2007

 

But the values entered into the database are:

 

1  	0000-00-00 00:00:00  	0000-00-00  	0000-00-00

 

The values are obviously out of order.

 

Should I just switch the year to first position?  Is the second value the month or the day?

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.