Hi everyone. I'm just starting out in the DNN world and was wondering if there were any good places to find quick answers to questions.
Is there an IRC chat channel that is sometimes populated?
Is there a list of DNN tokens available anywhere? I can't a help manual and google doesn't turn up anything.
One of my actual DNN questiosn is:
When I'm doing SQL statements in DNN, how do I make it so I can call SQL functions? For me, this works:
INSERT INTO DateIndoo (date)
VALUES ('5/2/3402 13:00:00')
where
INSERT INTO DateIndoo (date)
VALUES (CURDATE())
does not. However I found the CURDATE() statement listed here:
http://dev.mysql.com/doc/refman/5.0...tions.htmlAny thoughts?