ok cool, so now im taking the data into mysql...
however, i was wondering what TYPE i should set the fields as. Because "biog" i would like to take up to 300 characters. its currently set as TEXT and is only taking in 1 char each time i register.
this is the table
USERS
user_id (int(8), primary key, auto_inc)
username - varchar(11)
password - varchar(32)
location - text
email - text
biog - text
should i change the bottom 3 to other TYPES?
thanks
for some reason no matter how much i type in "biog" when i go to phpmyadmin, its only inserted "g"
any ideas?