At 3/30/09 11:39 PM, Super-Yombario wrote:
You should have a good knowledge of HTML first. You learn HTML so you can learn a server-language, which interacts with MySQL databases. And along with HTML comes CSS. Lastly, the language is called SQL, the Structured Query Language. MySQL is a popular "compiler" you can say, fro SQL.
woah woah, you might want to do some research first.
mySQL is not a 'compiler' for SQL. mySQL is an open-source alternative to SQL. Both are very similar and use most of the same syntax and commands. If you're going to use mysql for web applications (the most common usage) then I suggest checking out w3school's php/mysql tutorial
http://www.w3schools.com/PHP/php_mysql_i ntro.asp
Mysql will store and retrieve information stored in a database, but you need a server-side language to actually process the information and display it. The language of choice is usually php, which is why it is used in the w3schools tutorial.
It will help to know some basic html, because php must output html to the browser to display any results you need. CSS and x/html do go together, but css isn't important if you just want to learn mysql for now.