Posts

Showing posts from May, 2020

Html Javascript

Image
Html javascript :-  It's two type. Javascript  Nonscript  1. Javascript is a client side scripting language. It's Access script file through src  2. Nonscript language is not support any client side script. It's define a alternate scripting language.

What is html?

Image
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

Image
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"; }