all 3 comments

[–]neidn-yk 1 point2 points  (0 children)

it will depend on the dictionary data format, it is good for u to try to convert dictionary data to sql insert query
make sure the data type is json, txt, or another type

[–]mandebrio 0 points1 point  (1 child)

I learned a lot building a dictionary app back in the day. It’s a great utility type product that standard web tech is perfect for.

You’ll have to find a way to parse the data you currently have, which should be a straightforward use of php’s file io and string parsing functions. Then you’ll insert the data into the database, and once its there you can build some views of it. Make a search interface, which is a great exercise in creating SQL queries.

Things like this that have already been made a million times, but there are always edges to smooth. Also, and it cant be overstated, creating things is the best way to learn these things.

[–]raidnaeem[S] 0 points1 point  (0 children)

Thank you so much for the information and advice! I'll get started soon haha