Search found 11 matches
- 2019-04-03 22:16
- Forum: ADDT
- Topic: How to format date in email?
- Replies: 1
- Views: 11413
Re: How to format date in email?
In the past I just used java scripting to fix date issues with some scripting like so... function fixDate(region,lookupFunc) { var eventDate = lookupFunc("{start_time}"); var datefix = eventDate.replace(/[A-Z][01][0-9]:[0-5][0-9]:[0-9]{2}.[0-9]{4}/, ''); return datefix } Also here is the l...
- 2015-01-17 00:08
- Forum: ADDT
- Topic: Upgrading to mysqli in ADDT
- Replies: 16
- Views: 39539
Re: Upgrading to mysqli in ADDT
Honestly I don't think you would a reasonable answer to that question.
- 2015-01-16 20:41
- Forum: ADDT
- Topic: Upgrading to mysqli in ADDT
- Replies: 16
- Views: 39539
Re: Upgrading to mysqli in ADDT
That would be great!
- 2014-12-11 19:19
- Forum: ADDT
- Topic: KT_Email.class.php
- Replies: 5
- Views: 67212
Re: KT_Email.class.php
Here is the link on the main site for the file.
http://www.interaktonline.info/files/61 ... ssed..html
http://www.interaktonline.info/files/61 ... ssed..html
- 2014-12-10 23:22
- Forum: ADDT
- Topic: KT_Email.class.php
- Replies: 5
- Views: 67212
Re: KT_Email.class.php
I had to change the title as the % in the title broke the link. Also forgot to put in the KT_Email.class.php file in the zip file so I added it and re-uploaded it. It needs to be approved again though.
- 2014-12-10 20:14
- Forum: ADDT
- Topic: KT_Email.class.php
- Replies: 5
- Views: 67212
Re: KT_Email.class.php
I can send you directly the files I have, So far for me my forms (3 forms, 1 contact form, 1 email page form and an add to mailing list form) are working so it seems all is ok but I haven't tested it more then just those forms. PM me if you want me to send you the files.
- 2014-12-10 01:47
- Forum: ADDT
- Topic: KT_Email.class.php
- Replies: 5
- Views: 67212
KT_Email.class.php
Hi All and mainly Fred, First off Fred, It's awesome to know you are still here making it happen. I posted a long long time ago when you first started to get this site rolling. This site has come in handy a few times. So as of late, I like other people have been having the issue with KT_Email.class....
- 2010-06-19 03:02
- Forum: Suggestions
- Topic: Can't reply in the forums
- Replies: 2
- Views: 18074
Can't reply in the forums
Hi Fred, So I tried to reply to a post the other day and when logged in the reply button is not showing. If I log out then the reply button shows but when pressed says you need to be logged in to post a reply. So I copied the reply link URL then logged in then tried to post and it says "You can...
- 2010-04-02 03:15
- Forum: ADDT
- Topic: Retrieving Values from SQL Select in a Trigger
- Replies: 2
- Views: 7156
Re: Retrieving Values from SQL Select in a Trigger
Also you can get db value for use in a custom trigger like so.
$Value = $tNG->getColumnValue("Field from database");
It must be a part of the original transaction though.
This is also already in ADDT/Interakt Docs
$Value = $tNG->getColumnValue("Field from database");
It must be a part of the original transaction though.
This is also already in ADDT/Interakt Docs
- 2010-04-02 03:11
- Forum: ADDT
- Topic: Retrieving Values from SQL Select in a Trigger
- Replies: 2
- Views: 7156
Retrieving Values from SQL Select in a Trigger
Get the values from a SQL statement within an ADDT trigger that do not exist within the original transaction. $querySEL = "SELECT dbfield1, dbfield2 FROM table"; $result = $tNG->connection->execute($querySEL); $numberOfRecords = $result->recordCount(); ...... while (!$result->EOF) { $resul...