Greenguy's Board

Greenguy's Board (http://www.greenguysboard.com/board/index.php)
-   Programming & Scripting (http://www.greenguysboard.com/board/forumdisplay.php?f=15)
-   -   PHP help (http://www.greenguysboard.com/board/showthread.php?t=41558)

Porn Junkie 2007-07-14 02:56 AM

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 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=''";

HELP |banghead|

JK 2007-07-14 07:05 PM

Try something like this, define the date first. No coffee in my system yet so it might not work.

PHP Code:

$date date('F j, Y');

$query_rsfeatured "SELECT * FROM tsoomain WHERE tsoomain.ldate=$date";

$result mysql_query($query_rsfeatured); 


Porn Junkie 2007-07-15 05:14 AM

worked like a freakin charm!

Greatly appreciated JK :)

AcidMaX 2007-07-19 09:56 AM

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.

Tinkerbell 2007-07-26 12:39 AM

Just to explain why it is what you did, didn't work... The 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 .


All times are GMT -4. The time now is 01:59 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
© Greenguy Marketing Inc