Hey guys i want to use an php variable as a part of a name of a mysql table which i create with a query. I used two types of quotes like a example i saw on the internet. It should create an individual table name. $cn
is not an array it is an single value. I have php error reporting enabled and it doesn't show any errors. Here is what i tried:
$sql2 = "CREATE TABLE lm_Warenkorb_`".$cn."`
(
Index TEXT,
)";
Why isn't this working? Is this possible or not? Hope it is clear what i want to do.