Jump to content

[SOLVED] Date() question


ballhogjoni

Recommended Posts

hey everyone, I have my code setup to save the date("Y-m-d") of each subscriber to my db when they subscribe. How can I automatically send an email to the subscriber a day later? Basically I want to query the db every day for the subs that subscribed yesterday and send them an email.

 

I need a code example on how to do this, I have search php.net and haven't found anything.

Link to comment
Share on other sites

Yes I plan on using cron jobs. I was asking about the actual script that would run.

 

my thought is:

 

SELECT * FROM Table WHERE date = 'Yesterdays date';

 

I need the code for 'Yesterdays date'. Would it be something like date("Y-m-d") -1? I am a noob with the date() function.

Link to comment
Share on other sites

<?php echo date("Y m d",time()-(60*60*24)); ?>

The time function returns the number of seconds since 1970-01-01

the date function receive as a second parameter this number of seconds.

So when you say time()-(60*60*24) it means all that time minus 1 day.

Hope it helps

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.