Step 2 - SQL in phpmyadmin
Ok first things first, we need to put our tables in phpmyadmin.
So heres the code:
CREATE TABLE `faq` (
`id` int(255) NOT NULL auto_increment,
`faqname` varchar(255) NOT NULL default '',
`faqanswer` varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;
Now once you have done that we are ready to go!
Pages: « First 1 2 3 4 5 Last »
Share
del.icio.us
Digg it
reddit
Current tags
Rate this tutorial
4
|
Log In to rate this tutorial
|
Comments
PricelessNL on 04/03/07 at 12:38
hi, i found youre tutorial on the web when i was searching for a tut to create a faq. first i want to say nice tutorial :)
but i have a question. Is there a possibillity of a Edit.php page where you could edit the questions or answers if you made a error
Add Comment
Log In to post your comments