articles
Total - 60
Html tags is used for defining the page structure in a web browser and also creating the page layout.
This is a list of the main Html element tags.
There are more not included in this...
Added Jul 03, 01:58 am Views 5
Sql Insert query is used to insert data into database.
Insert into table_name(column_name1, column_name2) values(value1, value2);
Added Jul 03, 01:15 am Views 1
In php, connect mysql database using mysqli_connect() method.
It takes four arguments.
<?php
$con = mysqli_connect('localhost', 'root', '', 'myDB');
if(!$con) {
die('Connection not established.');
}
?>
Added Jul 02, 06:19 pm Views 7
A search engine directory of the spider names can be used as a reference. Next, $_SERVER['HTTP_USER_AGENT']; can be used to check if the agent is a spider (bot).
The agent, along with the user ...
if(strstr(strtolower($_SERVER['HTTP_USER_AGENT']), "some_bot_name")) {
//other steps that need to be used
}
Added Jul 01, 02:47 am Views 7
Html stands for Hyper Text markup Language .
Html is the building block for webpages.
Html is a text that contains links to other text. This implies that when you click the hypertext, you are r...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<...
Added Jun 30, 03:29 am Views 6
The rename() function renames a file or directory.
This function returns TRUE on success or FALSE on failure.
Syntax
rename(oldname, newname, context)
Added Jun 30, 01:36 am Views 11
The Html sup tag is used for defining superscripted text.
This will produce the following result:
22, 23, 24
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<...
Added Jun 29, 04:25 pm Views 7
The Html sub is used for defining subscript text.
This sub tag is show result like:
H2O, CO2, O3
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<...
Added Jun 29, 04:22 pm Views 7
The Html <del> tag is used for show text in this format Deleted .
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<...
Added Jun 29, 04:17 pm Views 5
The Html br tag is used to when you want to start new line. The br tag forces a line break whenever you place it.
The text in a web page appears as single line by default. Therefore, when...
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<...
Added Jun 29, 04:13 pm Views 6