vote up 0 vote down star

Hello i am trying to get all the users infomation from the database and check the timestamp (fourteendays) and check it with the time now i got the time bit working but i can''t get it to send to all the when the time is > fourteendays

 $result1 = mysql_query("SELECT * FROM accounts") or die (mysql_error()); 
 while ($row1 = mysql_fetch_array($result1)) {
 $users_email = $row1['email'];
 $user_name = $row1['user'];
 $days_time = $row1['fourteendays'];
 if($timenow > $days_time){
 mail( $users_email, $subject, $emailbody, $headers);
 echo "email sent!";
 }
 }

Thank you.

flag

46% accept rate
2  
That SQL statement and while loop is a common design pattern featured the on thedailywtf. – llamaoo7 Oct 23 at 3:32
Yup, classic anti-pattern. Brings back the memories :) – Justin Ethier Oct 23 at 13:31

4 Answers

vote up 0 vote down

Or even

SELECT * FROM accounts WHERE fourneendays < (NOW() - INTERVAL 14 DAYS);

I am assuming that NOW() gives the timestamp you want - it won't be in UTC (But you knew that, right)?

link|flag
vote up 0 vote down

I assume you have already set the '$timenow' variable somewhere previous in the script and I would make sure to check that both time formats are the same when comparing. That was my problem in the past.

For date-related php information, visit the following link

http://ca.php.net/manual/en/function.date.php

link|flag
vote up 2 vote down

I recommend doing the date comparison in SQL, instead of pulling back all of the data in your query:

SELECT * FROM accounts WHERE DateDiff(Now(), fourteendays) > 14

Also, what is in that column in the database? If it is a timestamp, why don't you just call it as such? Am I missing something?

link|flag
yes its a timestamp – Gully Oct 23 at 3:00
You may want to consider calling it "EmailTime" or something more intuitive. Were you able to get this to work using an updated SQL statement? – Justin Ethier Oct 23 at 13:34
vote up 1 vote down

Try. Thats greater than or equal to 14 days.

 if($timenow >= $days_time){
     mail( $users_email, $subject, $emailbody, $headers);
    echo "email sent!";
 }

Also SELECT * is bad practice. You should only select the fields you need in that query.

link|flag
SELECT * isn't that bad compared to selecting rows you don't actually need. – MarkR Oct 23 at 11:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.