answersLogoWhite

0

mySQL and HTML are not connected. HTML is the markup language displaying web content in a browser, mySQL is a database. if you want to store data in a mySQL database and put it out in html, you'll need a scripting language (like PHP, Ruby, Perl, ...) to create the functionality of connecting to the DB, fetching data and returning it as HTML.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Engineering

How do you connect MySQL to HTML with Microsoft Office Frontpage?

You can't. Frontpage is just an editor, and you can't connect mySQL to HTML. You can do it with PHP, though.


Do you need to be connected to the Internet constantly while you create HTML Pages?

No you dont need internet to create n check the HTML all you have to do is to create a write the HTML Tags on the Notepad and Save it on your hard disk with the extension .html or .htm then Open the file it will be displayed on Your Web Browser....


What all computer languages are involved in web designing?

The primary languages are HTML, CSS and JavaScript. HTML is the markup used to structure your content. CSS is used to make the structure pretty. JavaScript is used to make the pretty structure do neat things. There are a bunch of other languages like PHP, ASP, JSP that work with MySQL or other databases...


Does your computer need to be connected to a LAN to view an HTML document on a website?

Your computer must be connected to the internet to view an HTML document that is located on a website. Whether that connection is through a local area network (LAN) or not. If you normally connect to the web via the LAN, then yes, you'll need to be connected to the LAN. If instead you run an adhoc network, use a direct connection to infrastructure (like a router) or a modem, then you need that connection to reach the web.


How do you connect C offline application with the MySQL database placed at remote server?

We use an online MySQL database for both online and offline applications.

Related Questions

What are Advantages of HTML Mysql?

MySQL can be linked with HTML easily by including JAR. We will need a Java program to establish an object too.


How do you connect MySQL to HTML with Microsoft Office Frontpage?

You can't. Frontpage is just an editor, and you can't connect mySQL to HTML. You can do it with PHP, though.


How can i Have php post to self with mysql?

Mysql is an Database where Data from HTML forms will be inserted to it by some scripts like ASP 3 (classic), ASP.NET, PHP, ColdFusion and... What you need is a form (By HTML), an Database and table in Mysql and PHP to insert data from your form to the table. mysql insert command is: INSERT INTO table_name_here (column1, column2, ..) VALUES (value_of_column_1, value_of_column_2, ...)


Is html enough to create a database?

No, you must use at least two other languages such as php and MySQL.


How can you make a website like facebook?

1. Start by learning HTML, CSS, PHP and a database like MySQL. 2. Be patient :-).


How to you connect in mysql database?

Use the following code to connect to your mysql database from the php file. variables are hostname, db_username, db_password - see the code below for the exact connection example. <?php mysql_connect("localhost", "admin", "1admin") or die(mysql_error()); echo "Connected to MySQL<br />"; ?>


How does Apache MySQL and PHP work together?

Let me answer from less 'technicall' point of view. Apache is the HTTP server. It gets the HTTP requests and answers with the HTML code. PHP is used to generate this HTML dynamically on server side. MySQL is used by PHP for getting the data. Once the Apache HTTP server gets the request for the page with php (or php3, php4, phtml or whatever is configured in Apache's config file), it calls PHP interpreter to generate HTML. Then this HTML is returned to the client - internet browser which sent HTTP request. PHP has got an access to MySQL DB via several APIs. This simply means, that you can just call some function in PHP script to select, import update or delete some data in a table of DB. You can also maintain the DB, create, delete new tables a.s.o. There is a lot of functions for that ;)


Is MySQL open source?

Yes, MySQL is open source and is free to download and install. You can use the MySQL Installer to install and configure MySQL server on Windows operating system. It provides a simplified installation and configuration process for MySQL products running on Microsoft Windows. The list of MySQL products includes the following items: MySQL Server MySQL Workbench MySQL Router MySQL Shell MySQL for Visual Studio MySQL Reference Manuals PDF MySQL connectors (MySQL/Python connector, MySQL/NET connector, etc.) MySQL database examples. To get started with MySQL database easily, you can use the comprehensive solution provided by dbForge Studio for MySQL, which allows you to efficiently process data and automate the management of your database objects.


Is there an HTML code for joining a site like one here?

If you are talking about Wiki.Answers then you would need to learn PHP and MySQL and maybe other programming languages to create it.


How do you create a form in database?

To create an online form and database, you could learn PHP, MYSQL, HTML and Javascript or alternatively try something like www.recs4free.com. This will do most of the work for you.


How do you check if the MySQL is running?

To check if MySQL is running, you can use the command line. On Linux, you can execute systemctl status mysql or service mysql status to see the service status. On Windows, you can check the Task Manager for the MySQL service or use the command sc query MySQL. Additionally, you can try connecting to the MySQL server using the MySQL client with mysql -u username -p to see if it accepts connections.


Is MySQL a server?

MySQL is an open source relational database management system based on SQL queries. It was developed by the Swedish company MySQL AB and is now a subsidiary of Oracle Corporation. Your could use a MySQL Client, for example dbForge Studio for MySQL, to install and connect to MySQL Server as a first steps to get started with MySQL.