Comparing revisions for GmBowenWikkaAsPIM
- [20731] 2009-06-28 17:03:18 by DanieleCruciani (unregistered user)
- [19363] 2008-01-28 00:15:26 by GmBowen (unregistered user) [Modified links pointing to docs server]
Additions:
In mytasks.php use something like this:
global $tableprefix;
$tableprefix = $this->config["table_prefix"];
and inside function use global $tableprefix; and in query "... FROM ${tableprefix}task ...." **do not use $this->config["table_prefix"] inside function PHP 5.1.x do not understand**
global $tableprefix;
$tableprefix = $this->config["table_prefix"];
and inside function use global $tableprefix; and in query "... FROM ${tableprefix}task ...." **do not use $this->config["table_prefix"] inside function PHP 5.1.x do not understand**