Right now im using this if statement, but i need to modify it so that it shows include if they signed up AFTER today’s date, instead of being equal to
<?php
if ($userinfo['signed_up']=="2011-08-29 09:00:00")
include("launchbuilder_gorilla.php");
else
include("launchbuilder.php");
?>
Should work, according to PHP’s in-built type-casting, and that date format. If you need to transfer the current time to that format, use:
However, as deceze pointed out, that doesn’t make a whole lot of sense, so you might want something like:
To check if they signed up at any point ‘today’. See the
date()function for more info.