HTML5 and SQL Server integration [closed]

0

Some course or workshop or whatever ... hehe. That you can recommend me for the integration of HTML5 with SQL Server. Let's talk about the fact that with MySQL it is more friendly and / or flexible to link it to HTML5, but if you could guide me to introduce myself and understand this group of technologies together, I would be very grateful.

Before asking me why I do not use MS for VS, ASP or something like that, it will be for obvious reasons to point to alternative platforms that move in free code without so many limitations ... and only for pleasure. (and common hatred towards Microsoft.) I hope I do not bother or offend anyone with my question.

Thank you very much everyone and Regards:)

    
asked by Zoraya Ramos 14.07.2017 в 19:04
source

2 answers

2

As you mentioned, HTML no is a programming language but a markup language , simply the skeleton of a document. For example, Office files (Word, Excel, PowerPoint, etc.) are now files described in XML , a markup language just like HTML but with other features . A web browser simply interprets that HTML along with the CSS to represent it graphically.

When it comes to "server-side languages" is a part of programming as such in a web environment (but not the only one). The server processes requests and, thanks to these languages, is able to automatically generate HTML documents that contain the necessary information. The most popular free language for this is PHP .

Finally, to apply programming on the client side, another programming language is needed (the HTML does not, let's go), which is usually JavaScript (although there are some other options ).

I leave an excellent compilation of web development languages so you have something clearer.

    
answered by 14.07.2017 / 19:35
source
11

You simply can not integrate HTML5 with any database.

You have concepts errors in your question. HTML is a simple language that only defines a basic structure in a web document, that is, with it you can work with the visual components of a page, be it text, images, videos, etc ... and because it is a language that running on the client side (that is, in the web browser) does not have the ability to connect to any database.

This task only corresponds to languages that run on the server side such as PHP , Python , etc, with which you can manage connections with databases and all other logical processes required by your site, such as for example, the information management of said database.

Therefore, if you want to make a site using SQL Server databases, the first thing you have to do is choose a server-side language and then investigate how to connect to your DB with that language.

    
answered by 14.07.2017 в 19:14