|
|
|
|
|
|
![]() |
#1 |
I've always wondered if there was a god. And now I know there is -- and it's me
|
PHP help
I need to write a select statement that basically pulls records out for the current date. Kind of what link lists use to show the days current selections.
I use <?php echo(date('F j, Y'))?> in my submit form but can't seem to figure out how to do a select to retrieve just todays submissions. I thought this would work but it doesn't. $query_rsfeatured = "SELECT * FROM tsoomain WHERE tsoomain.ldate='<?php echo(date('F j, Y'))?>'"; HELP ![]()
__________________
EzAngels EzLinks - Submit here |
![]() |
![]() |
![]() |
#2 |
Well you know boys, a nuclear reactor is a lot like women. You just have to read the manual and press the right button
Join Date: Nov 2003
Posts: 157
|
Try something like this, define the date first. No coffee in my system yet so it might not work.
PHP Code:
__________________
To alcohol! The cause of, and solution to, all of life’s problems |
![]() |
![]() |
![]() |
#3 |
I've always wondered if there was a god. And now I know there is -- and it's me
|
worked like a freakin charm!
Greatly appreciated JK ![]()
__________________
EzAngels EzLinks - Submit here |
![]() |
![]() |
![]() |
#4 |
Programming till my fingers bleed.
Join Date: Aug 2003
Location: Michigan
Posts: 876
|
Other options are:
SELECT * FROM tablename WHERE date = now(); OR SELECT * FROM tablename WHERE date BETWEEN '2007-06-01 00:00:00' AND '2007-06-01 23:59:59' really depends on your database structure. Always multiple ways to skin a cat. |
![]() |
![]() |
![]() |
#5 |
Just because I don't care doesn't mean I don't understand!
|
Just to explain why it is what you did, didn't work... The <?PHP and ?> tags are used to tell your server that what lies between them is going to be PHP code. The thing is, given that you had a variable, $query_rsfeatured, in your script already, you probably had those tags somewhere else before and after the code you quoted above. Placing another pair between those tags would produce an error. In other words, if you've already written <?PHP somewhere, you don't need to write it again until you've closed the first one with ?>.
|
![]() |
![]() |
![]() |
|
|