I need a very simple PHP database admin panel; simple record editor for the specified table

I want to add some dynamics to our corporate website. This is a minor role, so I would rather not waste time on it.

At this point, all I need is a simple PHP script where a non-technical user can pull and manage records in a MySQL table. Only one data table should be managed there; it will simply be available and updated quite often.

I remember that the default Grails bookmark function has exactly this: a list of entries with the ability to add, edit and delete without any nonsense.

What would be the best tool for this? I would rather not write it from scratch, as it will take me some time.

It seems like something must exist somewhere.

Thanks!

+2
source share
4 answers

Take a look at the Xataface . This is essentially a CRUD interface to your db. It is easy to install, open source, and can be designed to fit the corporate intranet.

+9
source

for db script, I recommend phpMyAdmin . This requires sql knowledge to perform complex tasks, but simple operations become friendly.

+1
source

If you are looking for similar Rails functionality, there is CakePHP that can automatically generate code for visual presentations to add, edit, view, and delete entries.

0
source

You can also check https://github.com/laravella/crud

http://laravella.imtqy.com/docs/

It is built on a caramel, easy to install and endless possibilities.

0
source

Source: https://habr.com/ru/post/898294/


All Articles