Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking to add some dynamics to our corporate website. This is a secondary role so I'd rather not be spending a ton of time on it.

At this point, all I need is a simple PHP script where a non-technical user can pull up and manage the records in a MySQL table. There's only one table of data to be managed; it's just that it will be accessed and updated quite frequently.

I recall that Grails' default scaffolding feature has precisely this: list of entries with the ability to add, edit and delete, with no nonsense.

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

It seems like the kind of thing that ought to exist somewhere.

Thanks!

share|improve this question

3 Answers

Have a look at Xataface. It's essentially a CRUD interface to your db. It's straightforward to install, open source and can be styled to match your corporate intranet.

share|improve this answer
Thanks a lot! This is exactly what I'm looking for. – Lansen Q May 13 '10 at 17:08
mark his answer as accepted then! – Galen May 13 '10 at 17:28
1  
@Galen: her, but thanks! – dnagirl May 13 '10 at 18:03

for the db script, I recommend phpMyAdmin. It requires sql knowledge to do complex things, but simple operations are made friendly.

share|improve this answer
Thanks for your response. phpMyAdmin is my go-to for backend stuff. I wonder if there's some kind of template facility available for making it prettier & simpler for my boss. – Lansen Q May 13 '10 at 17:07
I should have noticed this the first time - if it's a non technical user, why are they manipulating the db directly, instead of through a custom UI that abstracts records into the things they represent? – Tesserex May 14 '10 at 10:56

If you are looking for similar functionality of Rails, there is CakePHP, which can automatically generate code for scaffolded views to add, edit, view and delete records.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.