Started 2 weeks ago (2009-12-02 16:05:00)
by Günter Schenk
just modify the query that´s populating the dropdown menu by adding a WHERE clause, e.g. SELECT * FROM tablename WHERE columnname = 'Y' Günter
Started 6 months ago (2009-06-19 15:53:00)
by DWFAQ.info
This is usually caused by how the order of transactions are sent from your page. Need to see the php on your page, not the KT_functions.inc.php
Started 1 month ago (2009-11-15 07:50:00)
by waleed barakat
Hello, I think yes, you can accomplish that by checking the: keep me signed in check obx when logging in into your account! Also you have to open this file that located in: siteroot/includes/tng/tNG_logoutTransaction.class. php And expand the logout time (in
milliseconds): // remove cookies $cookie_path = tNG_getRememberMePath(); setcookie("kt_login_id", "" ,...
Started 8 months, 1 week ago (2009-04-09 19:13:00)
by Albert S.
Adobe quotes: Existing customers are encouraged to consider the
development environment of Adobe Dreamweaver CS4 software. ------ Show me one tutorial that creates a Dynamic List and Dynamic form with all the same functions and control of ADDT but without ADDT. Then I will consider the "development environment of Adobe Dreamweaver CS4 software" as a serious tool that ...
Started 2 weeks ago (2009-12-02 15:56:00)
by Günter Schenk
FWIW, the interaktonline.com website, the forums and the
knowledge base are still up and running
Started 2 weeks ago (2009-12-02 16:01:00)
by Günter Schenk
You don´t need to install the separate XML Export extension (which is indeed older than ADDT version 1.0.1 and hence
incompatible) when installing ADDT, because the XML Export functionality has always been integrated into ADDT anyway. Günter
Started 1 month, 3 weeks ago (2009-10-22 16:43:00)
by Günter Schenk
What you could to to
harden the query, is adding a ctype_digit check to the query´s "if" construct to ensure that the value of the URL parameter $_GET['id'] contains digits only, example: if (isset($_GET['id']) && ctype_digit($_GET['id'])) { $colname_whatever = $_GET['id']; } Cheers, Günter...