I'm creating a website with a very basic forum on it. I was wondering how a post would be stored in the database. My first guess would be a table with columns such as: "topictitle" VARCHAR(128) , "user"(who posted it) INT(id of user), and a "id" INT(11) of the post as to keep track of total posts.
but how would the actual content of the post be stored? as a VARCHAR(one billion)?, It seems like a data-comsuming method, and I have seen some posts on coding forums that are quite long. basically, Is there a limit of characters?, Is there a better way to store the content of someone's post?
thanks - Pixeltor
