Quote:
Today at 11:18 AM gengar003 said this in Post #15
nother question:
HOw would I add in a field to store large amounts of text (10,000 chars) ?
With default 'None'
? I tried, but it just gave me syntax errors...
EDIT: Also, once that was done, how would I set it up so that I could do $post['thatfield'] and have it show the poster's data for that field in the postbit?
|
Answer #1:
[sql]ALTER TABLE `tbl_name` ADD `col_name` TEXT;[/sql]
For default, do you actually want the default to be the string: 'None' , or NULL (nothing there)?
Answer #2:
PHP Code:
$bbuserinfo[col_name]