Use PHP to change MySQL field size
In this example, I am going to show you how to use PHP to change a MySQL database’s field size.
I have created a MySQL database with a table called “test” and a field called “testing” size varchar(100).
I have created a PHP file called “changesize.php” and I would like to use it to change the field size from varchar(100) to varchar(200). Continue Reading →

