A database is used to store the information in the form of rows and columns. The database stores data in tables, rows, and columns form to quickly served the asked queries. The PHP mysqli_query function allows you to create or delete the MySQLi database. The mysqli_query function takes two parameters first is the connection, and […]
See MoreMonth: October 2020
MySQLi Connection with PHP Script
PHP provides mysqli_connect() function to open a database connection. This function takes six parameters and returns the successful connection as an object. If the connection failed to establish, then the function returns the boolean value False. Example :- $con = new mysqli($host, $username, $passwd, $dbname); You can disconnect from the MySQLi database using the MySQLi […]
See MoreMySQLi Date Types
Data types play an important role while creating tables for databases. A database table can contain multiple columns with different data types like numeric or string. By the below characteristics, you can determine MySQLi data types: The type of values it holds. The space it takes or the length of the value. If the value […]
See MoreMySQLi – Introduction
Welcome to the MySQLi online tutorial website. Here you will learn MySQLi basics and advance functionality. This website provides a complete MySQLi tutorial with practical examples and MySQLi scripts. What is MySQLi MySQLi is one of the widely used Open Source Relational Database Management System(RDBMS) used inside PHP. MySQLi is widely used for developing high-performance, […]
See MoreHead Tag in HTML
The <head> tag in html contains the meta informtaion about the document, the <head> tag is placed between the <Html> and <body> tag. Metadata in HTML is data about the HTML document, which is not displayed in the browser. Metadata basically provides information about document titles, styles, scripts, character sets, and other meta information. The […]
See MoreHTML BR Tag
In an HTML document, the whole text is printed as a single unit unless you gave it proper tags and attributes. The <br> tag in HTML is an important formatting tag that helps you to provide line breaks in your document. Use <br> tag in your document where you want to start a new line. […]
See MoreHTML Headings
Headings in HTML are title and subtitles provide information about page content. HTML Headings Basics Headings in HTML can be defined with in <h1> to <h6> tags. You can show most important page heading with <h1> tag. While the least important heading can be shown with <h6>. Example <html> <head> <title>Displaying the Headings of HTML</title> […]
See MoreHTML Attributes
Attributes in HTML are provided additional information about HTML elements. HTML tags like heading tags <h1>, <h2> and paragraph tags <p> can have multiple attributes to define their characteristics. Attributes name and value pair All HTML elements can have multiple attributes. Attributes provide an additional piece of information about elements. Always specify an attribute in […]
See MoreElements in HTML
An HTML element is defined as a whole HTML tag. This element may contain content else it will be known as an empty element.Below are some HTML tags creating element -: Start Tag Content End Tag End Tag <h1> Heading of page goes here. </h1><p> paragraphs of page goes here. </p><div> Div content of your […]
See MoreHTML Tags
As we earlier told you, HTML is a markup language, and it uses different tags to display the structure of a webpage. The tag name is enclosed within a smaller than and a greater than symbol ex. <Tag Name>. Most of the HTML tags have their corresponding closing tags except few tags. The example of […]
See More