Okay. I tried what you said, and put that code in in the proper places. It went through [meaning it didn't hit the if result = false], but then gave me the error it's been giving me. I went into phpMyAdmin, and into the database, and into the SQL tab, and pasted the SQL code that I've been trying to get to work. Here is the error I got:
ALTER TABLE sd_users ADD COLUMN p71_name TINYTEXT( 33 ) DEFAULT '' AFTER lastactivity
MySQL said: Documentation
#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '(33) DEFAULT '' AFTER lastactivity' at line 1
So I played around with it a bit, and found out that this code works fine, when inserted via phpMyAdmin:
ALTER TABLE sd_users ADD COLUMN p71_name TINYTEXT NOT NULL DEFAULT '' AFTER lastactivity
So now my question is.. how do I make a seperate SQL code that adds the limits like I need? [ex. TINYTEXT(33)]