March 18, 2013
How to create a dictionary using PhP and MySQL?
Question by user1888673
How to fetch keywords (fields) and definition (records) in a MySQL database using PHP? Thank you.
Answer by Starx
Here is the query that will give you this.
SELECT * FROM dictionary WHERE fields='yourword';
Assuming, you have a table named dictionary.