Justin, et al -- ...and then Justin French said... % % On 13/04/2004, at 1:10 AM, David T-G wrote: % % >A client of mine wishes to create a web site which does more than just % >the typical CMS functions in that what you can see not only depends on % >whether or not you have an account but also how old your account is?). % >Of course, I'd prefer that it is written in PHP :-) % > % >Any recommendations? % % Any CMS / membership system that tracks when the user joined with some % form of timestamp should be customisable to meet your needs:
Right.
%
% <?php
% if($userJoinedStamp > $a) {
% echo "a";
% } elseif($userJoinedStamp > $b) {
% echo "b";
% }
% ?>
Well, actually more like
if ( mktime() - $user['joined']['stamp'] > a )
{ print "a\n" ; }
but I agree with the idea.
%
% I'd look for a decent CMS that meets MOST of your needs, then tweak it
% to match special needs like this one... there's no way you'll find
% something that does everything.
Yeah, probably not. But there's always hoping :-) And I'm moderately
surprised nobody has yet had to invent this wheel (or has done so and not
told anyone).
%
% Or, build it yourself, and cut out the overhead :)
My art ain't that great; I'd definitely want to start with something that
looked pretty and put on the controls :-)
Thanks & HAND
:-D
--
David T-G
[EMAIL PROTECTED]
http://justpickone.org/davidtg/ Shpx gur Pbzzhavpngvbaf Qrprapl Npg!
pgp00000.pgp
Description: PGP signature

