I want add another column into my table using PHP my code is not working
$sql="ALTER TABLE user_preference_table ADD column '$tag_id' VARCHAR(60) ";
$result = $conn->query($sql);
i think problem is with my way of declaring the variable into the query ?
is my query right?
'$tag_id'
it is a variable that contains the some id like 501
Replace single quote with backtick.
Signle Quotes are generally for inserting values into Database tables.
Backticks are used for DB fields.
They prevent errors of using reserved keywords in MySQL.
e.g.