Jump to content

[SOLVED] Create a new column with php?


newbtophp

Recommended Posts

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.

Link to comment
https://forums.phpfreaks.com/topic/173704-solved-create-a-new-column-with-php/
Share on other sites

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  :sleeping:

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.