Yani, veri koymak ediliyor tablo adı bir PHP Değişken bir MySQL tabloya bazı veri eklemek istiyorum.
Böyle bir şey:
$tablename = "databasetable";
$insert = mysql_query(
"INSERT INTO '".$tablename."' (column1, col2)
VALUES ('Blah', 'Blah')
");
But that of course doesn't work, so I'm not sure what to do. By the way, I'm new to PHP and StackOverflow.