HTML

javascript cookie

How to Create Cookies in PHP on Browser

In this article, you will learn How to Create Cookies in PHP.on Browser A Cookie is used to identify any user. With the help of the PHP, you can retrieve and create the cookie.

Syntax:-

setcookie(name, value, expire, path, domain, 
bootstrap pagination

How to Create Pagination in PHP

In this article, you will earn How to Create Pagination in PHP.

Example:-

index.php

<?php
include('db.php');?>
<html>
<head>
<title>Pagination in PHP</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<table border="1">
    <tr>
    <th>Sr No.</th>
    <th>Name</th>
    <th>Father Name</th>
 <th>Email</th>
   <th>Mobile</th>
    
html list

How to Create List in HTML

In this article, you will learn How to Create ordered or unordered List in the HTML. The HTML have two types of List.

  1. ordered List (ol)
  2. unordered list (ul)

Ordered List

<ol type="1">
<li>India</li>
<li>USA</li>
<li>China</li>
<li>England</li>
<li>Canada</li>
</ol>

Output:-

border frame

How to use Iframe in HTML

In this article, you will How to use Iframes Using HTML on Web Browsers.

Syntax:-

<iframe src="URL"></iframe>

Example:-

<html>
<head>
<title>Iframe with Target Link</title>
</head>
<body>
<iframe height="300px" width="100%" src="https://huboftutorials.com" name="iframe_a"></iframe>
</body>
</html>

Example of Iframe Removing Border

<iframe src="https://huboftutorials.com" 
mp4 video player

How to Play a video on web Browser

In this article, you will learn How to Play a video on web Browser.

<html>
<head>
<title>Video</title>
</head>
<body>
<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
</video>
</body>
</html>

In the above code <video> tag is used …