• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

help with a web based database

npoe1

Senior member
I need to make a Web interface for a database using MySQL and any language for web pages, but one of the requirements is that the database could be used in IE, I need some help with this, because I have no experience in this sort of things, but the most ?interesting? thing is: I need to build some base or some tools, in case of anyone else want to do another database, I?m not familiar with web development, so any book that you could recommend me of Software Design or Web Development are welcome.
 
no ActiveX content and that class of things. I said IE just because that's the one "most" used. Sorry.
 
If you're talking MySQL, you're going to use PHP most likely. Dynamic languages such as PHP talk to databases to pull data. This is more robust than static websites that use straight HTML and do not pull data from anywhere... they basically render code already programmed. Dynamic languages have an advantage because they can work off of user feedback or constantly changing data (stored in MySQL in this case).

I would start with an understanding of web pages and HTML, then work your way up to dynamic sites with PHP/MySQL. HTML is used in conjunction with PHP anyway to produce dynamic sites.

I'm not sure what you mean by "database could be used in IE"... a language like PHP should bridge that database <--> user gap no matter what browser. Check webmonkey.com for some good basics.
 
Do you have to have application specific functionality in the webpage, or is it just straight up access to the database itself? If it's the second option, I think you'll find this has done before which would leave you with no more work than downloading some code.
 
Back
Top