nuTT() Example correction
Posted: Fri Aug 14, 2020 11:15 am
Hi Steven,
This Wiki example needs correction:
$string = nuTT()
https://wiki.nubuilder.cloud/ ... p/PHP#nuTT
Now:
Shouldn't it look like this?
And you could probably add an example on how the SQL looks like in the Browse SQL:
This Wiki example needs correction:
$string = nuTT()
https://wiki.nubuilder.cloud/ ... p/PHP#nuTT
Now:
Code: Select all
$tmp = nuTT();
$s = "CREATE TABLE $t SELECT * FROM customer";
nuRunQuery($tmp);
Shouldn't it look like this?
Code: Select all
$tmp = nuTT();
$s = "CREATE TABLE $tmp SELECT * FROM customer";
nuRunQuery($s);
Code: Select all
SELECT * FROM #TABLE_ID#