Originally Posted by
djr33
So is your goal to manage your database or to manage your data? There's a big difference. PHPMyAdmin is designed for managing the database-- structure, backups, etc. (see above).
But if you want to deal with inputting entries, changing values, etc., then as we've described really the best option is to use something else, probably something you build yourself. As a generic solution, I think PHPMyAdmin with a lower access account might be a good idea. It would clean up some of the complicated options and let you get right to the business of editing the data. You should also be able to create just a username and a password. Many free/cheap hosts have an elaborate login system that really gets in the way of easy access (but may be good for security), so you could look into alternative hosts or maybe just another way to access it that is faster. PHPMyAdmin itself doesn't have any complex login requirements (except that it often times out after inactivity, maybe 10 minutes-- you could probably turn that off if you want).
What do you spend most of your database time doing? Adding new entries? Is it for lots of different tables? Or just one (or a few)? If it's something managable, you should really consider building your own system in PHP for it. It'll make your editing life easier.