| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 5 months |
| seen | 7 hours ago | |
| stats | profile views | 37 |
Just a developer who want's to learn.
|
Apr 26 |
awarded | Supporter |
|
Apr 26 |
comment |
Reservation system renting a block of a day You sir, made my day. In the end I still used d1(start_timestamp) and d2 (end_timestamp) as timestamps and it got the job done. I can't say how much I appreciate your help! Thanks! |
|
Apr 26 |
accepted | Reservation system renting a block of a day |
|
Apr 26 |
awarded | Student |
|
Apr 26 |
comment |
Reservation system renting a block of a day Are d1 and d2 the php variables and @d1 begin the start_timestamp of the current block? |
|
Apr 26 |
revised |
Reservation system renting a block of a day deleted 77 characters in body |
|
Apr 26 |
comment |
Reservation system renting a block of a day It is stored as a timestamp yes |
|
Apr 26 |
revised |
Reservation system renting a block of a day added 494 characters in body |
|
Apr 26 |
comment |
Reservation system renting a block of a day Example query: SELECT * FROM reservations WHERE
( start_date >= " . $start_block_1 . "
AND end_date <= " . $end_block_1. ") OR (start_date
>= " . $end_block_1. "
AND end_date <= " . $start_block_1. ") The $start_block_1 and $end_block_1 represent the 00:00:00 - 06:00:00 blocks of a day |
|
Apr 26 |
asked | Reservation system renting a block of a day |
|
Apr 24 |
accepted | Reservation system dates |
|
Apr 24 |
comment |
Reservation system dates I can't test it now because I am not at work but seeing the query you build at the question you linked to is similar to the query I mentioned in a comment above I believe you gave me the correct answer, seems logical. Thanks very much, I have been in on this for about 8 hours now. Logic seems hard sometimes.. |
|
Apr 24 |
comment |
Reservation system dates Until now I came up with the following: SELECT * FROM reservations WHERE start_date BETWEEN '$newStartTimestamp' AND '$newEndTimestamp' OR end_date BETWEEN '$newStartTimestamp' AND '$newEndTimestamp' not sure if this is correct. Can anyone confirm? |
|
Apr 24 |
revised |
Reservation system dates added 3 characters in body |
|
Apr 24 |
comment |
Reservation system dates No since there is only one, so basically what I need to figure out is if a new reservation is either before the existing ones or after the existing ones but a reservation is never the same ammount of hours |
|
Apr 24 |
awarded | Editor |
|
Apr 24 |
comment |
Reservation system dates Sorry, didn't think of adding it added now. |
|
Apr 24 |
revised |
Reservation system dates added table structure |
|
Apr 24 |
asked | Reservation system dates |
|
Apr 21 |
answered | CSS Solution needed for full width slider |