when creating a new table using varibles, how would I create this table:
$variablename(links)
meaning I want to create a table with the variable name, but with "links" added to the end of it.
$variablename."_links"
could I also use $variablname.'_links' ?
It didn't work for some reason....... The tables weren't created at all. Only 1 table was created, and that was the on without ."_links" on the end 😕
post your SQL query.... it should look something like this:
$SQ = "CREATE TABLE " . $variablename . "_links (... definitions ...)";
-sridhar