newbtophp Posted September 9, 2009 Share Posted September 9, 2009 Im trying to create 1 new column using php. Im trying to add the column: country to the table gaming. <?php //Include mysql connect include "conn.php"; mysql_query("alter table gaming add column country varchar (20)") or die(mysql_error()); die("column created!"); ?> So when I add this code to a file and then run the file the column should be created. Quote Link to comment Share on other sites More sharing options...
rhodesa Posted September 9, 2009 Share Posted September 9, 2009 So, there is no problem then? This was the easiest problem EVER! Quote Link to comment Share on other sites More sharing options...
newbtophp Posted September 9, 2009 Author Share Posted September 9, 2009 lol, bad description. hehe, i was trying to add a column to the table, the code usually worked, but today it didnt so i posted here for help on what im doing wrong. But just now i check and the problem was that in my conn.php the table was a different one. I need to Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.