https://drive.google.com/file/d/1qeBughptgq3wTdxpOr8xBlALlw5aCIb3/view?usp=sharing https://drive.google.com/uc?export=download&id=1qeBughptgq3wTdxpOr8xBlALlw5aCIb3 download https://drive.google.com/uc?export=download&id=1qeBughptgq3wTdxpOr8xBlALlw5aCIb3
Posts
What is html?
- Get link
- X
- Other Apps
Html:- Html is a hyper text markup language. Html is the standard markup languages for web pages . Html elements are the building blocks of html pages. Html elements are represented by <> tags. Html is represent a start tag and an end tag . Html explained The html <Doctype html > is declaration this document to be html. The html is <html> elements is the root element of an html page. The lang is define language of html document . The <mata> tag is define of data about data . The <Charset> attribute define the character of document . The <title> tag specifies a title for the document. The <body> tag contains the visible page of content. The <H1> element define the heading of contains . The <p> tag is define a paragraph .
How to connect to database in php
- Get link
- X
- Other Apps
Connect sql data to database First of all install local server like xampp ,wamp server.I prefer to xampp server https://www.apachefriends.org/download.html After That start xampp server .Then Write code to connect database Code is $conn = mysqli_connect("localhost","root","","database_name"); Check Connection if($conn){ echo "Connection Success"; }else { echo "Failed Connection"; }