I have this db table where I want to store about 100-500 different jokes (small jokes max 500 characters).
CREATE TABLE `jokes` (
`Num` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,
`Text` TEXT NOT NULL
) ENGINE = MYISAM ;
What method I should use for the fastest upload to the db my jokes?
One of these website's tutorials should be fine for me?
http://www.w3schools.com/php/php_mysql_insert.asp
http://www.tutorialspoint.com/php/mysql_insert_php.htm
Thanks