grga Posted April 7, 2007 Share Posted April 7, 2007 Perhaps is my question little stupid but.... I add a row in table, with php code below: ALTER TABLE `my_table` ADD `my_row` VARCHAR( 30 ) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL COMMENT 'my_comment'; how can I print content of COMMENT 'my_comment' on a page with php?? Quote Link to comment Share on other sites More sharing options...
PC Nerd Posted April 8, 2007 Share Posted April 8, 2007 to insert a new row, its: INSERT INTO Table_Name (field names here) VALUES (values corrisponding order to field nams) thats only from memory, but i think its right good luck 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.