0
votes
4answers
38 views
Booking system dates in database
I need some help with the following:
I am setting up a booking system (kind of hotel booking) and I have inserted a check in date and a check out date into database, how do I go t …
1
vote
3answers
47 views
working with dates
Hi. I was wondering if anyone would help with the following:
I have a date called into a function in php. I need to estrapolate the month form this date in order to make some calc …
0
votes
4answers
28 views
Which is the best way to check if timestamp/datetime belongs to a specified date
Sometimes I have a datetime or timestamp columns in the database and, for example, I need to select all records with timestamp updated today.
I usually do it like this:
SELECT …
0
votes
3answers
59 views
PHP last day of the month
How can I get the last day of the month in PHP?
Given:
$a_date = "2009-11-23"
I want 2009-11-30; and given
$a_date = "2009-12-23"
I want 2009-12-31.
1
vote
8answers
177 views
C# - Best way to retrieve accurate date?
What is the best way to retrieve the current date? Currently I am storing the date like this:
string date = DateTime.Now.ToString("yyyyMMdd");
Obviously, if the user changes th …
0
votes
2answers
39 views
Problem with DATE type in SQL Server
I'm trying to CREATE a TABLE with an attribute of type DATE in Microsoft SQL Server 2008. However, when I execute the query,
I get the error:
Column, parameter, or variable #3: …
0
votes
3answers
46 views
dates from and to
Hi I have already asked a similar question. but want to make a change like this:
I have a starting date and ending date called into a function in php. I need to estrapolate the st …
0
votes
1answer
30 views
PHP ‘end date’ from a given ‘start date’ - last day/15th of the following month
I'd like to get an 'end date' from a given 'start date' in PHP. End date is based off the start and are calculated as follows:
If Start date is from the 1-15th of the month, End d …
0
votes
5answers
62 views
PHP form validation for year
I'm using PHP to validate form input before the form data's submitted to a MySQL database.
What would be the best way to validate a form input for the year only? I have a form inp …
1
vote
1answer
67 views
PHP - Find next available time slot
I'm looking for help in writing a script to find the next available time slot.
Ex: Person A wants an appointment and the available time slots everyday is 9am, 12pm, 4pm, 6pm, 9pm …
0
votes
2answers
35 views
Jquery validate date range fails
I have an HTML page with a web form. Among other things, it includes the following form fields:
Title - textbox
SourceName - textbox
Url - textbox
FullText - textbox
PublicationD …
1
vote
2answers
40 views
Date Stamp into a String
I'm sure this is a easy problem, but I just can not seem to find how to do this anywhere. I need to use the current Date and save it into a String. I do not know how to get the d …
0
votes
3answers
25 views
How to format the date in korn shell script to DD-MON-YYYY?
How do I format a date in a korn shell script to DD-MON-YYYY?
I have tried the following:
date '+%d-%h-%Y'
It returns 04-Nov-2009 I need for the Nov to be NOV (all caps). Can …
1
vote
1answer
34 views
How to format a String to date in flex?
I have a String in the format "20-Aug-2008". I want this to be converted to either 20/08/2008 or 08/20/2008? How can I do this?
I just want to remove all those hyphens from the St …
0
votes
2answers
22 views
Default date in mysql
hi foks,
i am facing issue while creating table where in that one column which is set to default value of current date........i would stress this point "that i need only date not …
