Hi there i was learn mysql from videos at youtube,and i want to create table .I have one variable that is a number ,that i want it to be number of the messeges from users.. It is now int varaible but i found that the max of int is 255.. i want to be bigger what the right varible? And is the variable messege text () not null..is right ?
The code is :
$sql = "CREATE TABLE mssegeFromUsers
(
NemberMsg INT (255) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
Name VARCHAR(15) NOT NULL,
Mail VARCHAR(30) NOT NULL,
Messege TEXT() NOT NULL
)";
I want the massege from user te be long.. It's right?