yshua Posted August 10, 2012 Share Posted August 10, 2012 Dear readers and PHP forum staff: Another naiive question: Is phpmyadmin purely a called up package with which to generate php code and modules? Or is it also called by php files to transfer data to mysql databases on a webserver? Thanks sooo much, Yshua :-\ Quote Link to comment Share on other sites More sharing options...
floridaflatlander Posted August 10, 2012 Share Posted August 10, 2012 I sure there are others others that can give you more details but it's used to manage your mysql databases and tables. With phpmyadmin you can add delete or edit databases and tables. Quote Link to comment Share on other sites More sharing options...
Christian F. Posted August 10, 2012 Share Posted August 10, 2012 What phpMyAdmin is, and what it can do, is quite clearly explained on the front page of the project. I recommend reading through it, and the documentation, to get all your questions about phpMyAdmin answered. Quote Link to comment Share on other sites More sharing options...
yshua Posted August 10, 2012 Author Share Posted August 10, 2012 Dear ChristianF: Please give me directions to the project from which to look at its first page.... Still naiive, Yshua Quote Link to comment Share on other sites More sharing options...
Pikachu2000 Posted August 10, 2012 Share Posted August 10, 2012 Did you click the link above that says 'front page'? Quote Link to comment Share on other sites More sharing options...
yshua Posted August 10, 2012 Author Share Posted August 10, 2012 Thanks, Pikachu2000: To my chagrin, by coincidence this was precisely the only blurb I had read up to now on phpmyadmin. With all due respect, the front page I failed to notice as a URL, mostly gloats on achievements. But the problem has suddenly become an opportunity, since we literally were/are on the same page!! Now my question can be delineated with some common starting point! So, to clarify, I plan to do zero data entry myself, so all data entry must come from customer's own entries off php menus. 100% menu driven! So, apart from usage of phpmyadmin generated php coding, I am baffled at an error message, "File does not exist: C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/favicon.ico," where favicon.ico is only located in phpmyadmin-3.4.5-english directory, seemingly. Am I giving enough info to anyone out there who has an idea what is happening? Sorry for the lack of clarity, Yshua Quote Link to comment Share on other sites More sharing options...
Pikachu2000 Posted August 10, 2012 Share Posted August 10, 2012 It sounds as though phpMyAdmin is not what you're looking for. Quote Link to comment Share on other sites More sharing options...
Christian F. Posted August 10, 2012 Share Posted August 10, 2012 Indeed, phpMyAdmin will not help you with the task you have at hand. It is a database administration application, and can be compared to using Access to modify a database. What you need to do, is to learn PHP, MySQL, HTML and CSS and write the code for your project yourself. Expect to use at least a couple of months, to properly learn the stuff you need and to get a basic framework up and running. If not more. Also keep in mind that security is alpha and omega, meaning that you have to design the application from the group up with that in mind; Security is a process, not a product, after all. Which means that you'll have to validate all input, escape output using the proper methods, use CSRF protection in you forms, secure logins, hashing passwords (with individual salts) and so forth. If this sounds too much for you, or this is a commercial project, then I recommend considering hiring someone who knows what they're doing. Just remember to write a proper, and detailed, requirement specification document first. Something you should do in any case, as it will be of great assistance to anyone who is to write the code. You included. Quote Link to comment Share on other sites More sharing options...
yshua Posted August 10, 2012 Author Share Posted August 10, 2012 Dear ChristianF: People like you are why people like me use phpfreaks forums. Thanks so much, Yshua Quote Link to comment Share on other sites More sharing options...
Christian F. Posted August 10, 2012 Share Posted August 10, 2012 You're most welcome, glad I could help. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.