Hi Xulu,
Neat idea! But this would really only be plausible if the forms themselves were generated by Form Tools. What I mean is, Form Tools forms are very much their own entities.
Instead, what you can do is add some PHP to the top of your form page that automatically redirects your users after a certain date. I haven't tested this, but it would look like this:
(Make sure you wrap it in <?php and ?> tags - for some reason this forums editor is stripping them out).
Hope this helps!
- Ben
Neat idea! But this would really only be plausible if the forms themselves were generated by Form Tools. What I mean is, Form Tools forms are very much their own entities.
Instead, what you can do is add some PHP to the top of your form page that automatically redirects your users after a certain date. I haven't tested this, but it would look like this:
PHP Code:
$offline_date = mktime(0,0,0,6,21,2009); // June 21st, 2009
$current_date = date("U");
if ($current_date > $offline_date)
{
header("location: form_unavailable.php");
exit;
}
(Make sure you wrap it in <?php and ?> tags - for some reason this forums editor is stripping them out).
Hope this helps!
- Ben