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, …
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,
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> …
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>
In this article, you will learn How to Create ordered or unordered List in the HTML. The HTML have two types of List.ordered List (ol)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:-…
In this article, you will learn How to Create ordered or unordered List in the HTML. The HTML have two types of List.
Ordered List
<ol type="1"> <li>India</li> <li>USA</li> <li>China</li> <li>England</li> <li>Canada</li> </ol>
Output:-…
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" …
In this article, you will How to use Iframes Using HTML on Web Browsers.
<iframe src="URL"></iframe>
<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"
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 …
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 …