Welcome to the nuBuilder Forums!
Register and log in to access exclusive forums and content available only to registered users.
Questions related to using nuBuilder Forte.
-
kev1n
- nuBuilder Team
- Posts: 4305
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 71 times
- Been thanked: 446 times
-
Contact:
Unread post
by kev1n »
Hi Steven,
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);
And you could probably add an example on how the SQL looks like in the Browse SQL: