Jump to content

Check premium expire


steviez

Recommended Posts

Hi,

 

I am making a simple file hosting site and want to check if users premium subscriptions have ended or not. In the database i have premium_start ( time() ) and premium_end ( time() ) that represents the start and end date.

 

Would the following code work to check if an account has expired?

<?php
// check premium expire
if((time() - $member['premium_end']) >= time())
{
    // do actions here	
}
?>

 

thanks

 

Link to comment
https://forums.phpfreaks.com/topic/192569-check-premium-expire/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.