HTML, CSS, JS , WP, PHP, ASP,Bootstrap, SQL Tutorial. Official accoun t
Don't wanna be here? Send us removal request.
Text
HOW TO LEARN PHP? PHP TUTORIALS!
Answer: PHP is a most powerful Web programming language. It is a most useful for web development. It is an HTML embedded, server-side scripting language designed for web development.
If any developer wants to build a nice dynamic website so he should be using PHP. Because PHP is an open source programming Language for all. By this PHP Tutorials, you can learn how to make a dynamic website using PHP.
The PHP full meaning is Hypertext Preprocessor (earlier called, Personal Home Page)
Basic Structure of PHP
<!DOCTYPE html> <html lang="en"> <head> <title>PHP Tutorials</title> </head> <body> <?php echo "Hello World! This is First PHP Programming."; ?> <p>Output</p> Hello World! This is First PHP Programming. </body> </html>
Output: This code simple generate below output
PHP DATA TYPES
PHP variables do not need to be declared before the assignment, it is declared at the time of assignment by the leading of dollar sign ($). PHP variables can store different types of data, there is no need to declared data types before or at the time of assignment.
There are eight data types in PHP
- Strings
- Integers
- Float or Doubles
- Booleans
- Null
- Array
- Objects
- Resources
How many data types in PHP? There are eight data types in PHP such as Strings, Integers, Float or Doubles, Booleans, Null, Array, Objects, Resources.
PHP VARIABLE
In the middle of PHP programs, we can store temporary data through PHP variables. There is no need to declared a variable before assigning the value. PHP variable starts from the $ sign.
How to declare PHP Variable?
PHP Variable declare using dollar sign ($)
How to use PHP Variable?
First declare a PHP variable then it call any place of page or another page where declare page already included.
PHP Variable Example
<!DOCTYPE html> <html> <body> <?php $php_string = "This is a string"; $php_integer = 357; $php_float = 5.201; ?> <p>This is a PHP string variable example : <?php echo $php_string; ?></p></br> <p>This is a PHP integer variable example : <?php echo $php_integer; ?></p></br> <p>This is a PHP float variable example : <?php echo $php_float; ?></p> </body> </html>
PHP CONSTANT
PHP Constants is a predefined function of PHP. It is just like a variable but the difference is that PHP Constants used as a global variable and once it is defined it cannot change during the execution of the script.
What is PHP Constants?
PHP Constants is a predefined function of PHP
Syntax of PHP Constants is define(name, value, case-insensitive).
PHP Constant Example
<!DOCTYPE html> <html> <body> <?php define("WISHES", "Hello John !"); ?> <p>This is a PHP Constant variable example : <?php echo WISHES;?></p></br> <p>Same thing will print : <?php echo constant("WISHES");?></p> </body> </html>
The above code produces the following results
PHP STRINGS
PHP string is a collection of characters i.e. "Hello John!". A PHP string value must stay with " ".
What is PHP string? When a value stays within " " then it's called be PHP String. Like "Hello John!"
These are valid example of strings in PHP
<!DOCTYPE html> <html> <body> <?php $first_string = 'This is a string in single quotes'; $second_string = "This is a string in double quotes"; ?> <p>First String : <?php echo $first_string;?></p></br> <p>Second String : <?php echo $second_string;?></p></br> </body> </html>
The above code produces the following results
PHP OPERATORS
PHP operators are used to performing some specific operation on variables and values.
What are PHP Operators?
PHP Operators operand one or more than one Operand.
These operators supported by PHP language.
-Assignment Operators
-Arithmetic Operators
-Comparison Operators
-Conditional / Ternary Operators
-Logical / Relational Operators
PHP IF ELSE IF
You can decide that which part of code want to execute and which part don't by using if and else...if...else statement. You can use this conditional statement for your decision.
if statement (Execute the part of code when the condition will be true)
if else statement (Execute if condition part of code when the condition will be true otherwise else part of the code will be executed)
if..elseif..else statement (Execute some part of code for more than two conditions)
Syntax and Example for if statement
if(condition){
// This part of code will be executed if condition will be true
}
<!DOCTYPE html> <html> <body> <?php $a = 7; $b = 5; if($a > $b) { ?> <p>if part execute when condition true : <?php echo $a . ' is greater than ' .$b;?></p> <?php } ?> </body> </html>
The above code produces the following results
Syntax and Example for if else statement
if(condition){
// This part of code will be executed if condition will be true
} else {
// This part of code will be executed if condition will be false
}
<!DOCTYPE html> <html> <body> <?php $a = 7; $b = 5; if($a < $b) { ?> <p>if part execute when condition will be true : <?php echo $a . ' is greater than ' .$b;?></p> <?php } else { ?> <p>else part execute when condition will be false : <?php echo $b . ' is less than ' .$a;?></p> <?php } ?> </body> </html>
The above code produces the following results
1 note
·
View note
Text
Are you looking for Online Tutorial for Programming?
1 note
·
View note
Text
Do you know how about general setting in wordpress?
You can change your basic site information from General setting, such as the Site Title and Tag Line, the WordPress Address and Site Address, the administrator's email address and the date and time format, among other things, which look like this. Details: goo.gl/Gso7PK
1 note
·
View note
Text
Install Plugins:
Plugin part is one of the strongest and easy tools available in WordPress for adding additional functionality to your website, you can easily activate, deactivate, delete or add the plugin from option given in this, which is look like below figure
Details: http://www.saftutorials.com/wordp…/wordpress-install-plugins
1 note
·
View note
Text
How to Install WordPress plugin:
You can install WordPress plugin easily by clicking on add new plugin button directly(from dashboard only) or manually (zip file).
Details: http://www.saftutorials.com/wordp…/wordpress-install-plugins
0 notes
Text
WP - DASHBOARD TUTORIAL
This is the Admin Dashboard which looks after login to admin panel by entering URL http://yourdomain.com/wp-admin OR Locally http://localhost/yourwpfolder/wp-admin
Details: goo.gl/UwTqPs
0 notes
Text
There are eight data types in PHP
- Strings
- Integers
- Float or Double
Details: goo.gl/fWFG3w
7 notes
·
View notes
Photo

PHP file can contain HTML tags, text, CSS, PHP script and JavaScript see example. Details: goo.gl/F8fF22
7 notes
·
View notes
Photo

HTML Tag List
Details: goo.gl/tjLBQW
2 notes
·
View notes
Text
Do you know how to use How to use HTML Tag?
<tagname>Display text or image </closetag> e.g: <h1>The sample heading tag</h1> Details: goo.gl/tjLBQW
0 notes
Text
What is HTML tag?
Ans: HTML tag is hidden command that force to browser for change his behavior. HTML Tags call into less than sign and greater than sign. Major HTML tags close with slash (/) sign. Details: goo.gl/SgWQub
0 notes
Photo

Life Structure of bootstrap. More Informations: goo.gl/tjLBQW
0 notes
Text
PHP SETUP TUTORIAL
If you want to run and test a PHP code or develop a web application then you need these three vital components to be installed on your computer system. You can make your website dynamic using PHP.
How to Setup PHP? or How to Setup PHP on my Computer?
Set up Apache server and MySQL Database then you can run PHP on your Computer.
Deatils: goo.gl/X3gQCM
7 notes
·
View notes
Photo
CSS Structure is important part of CSS. If you learn CSS structure then you can use it anytime anywhere in your HTML file.
You know CSS are three types like: 1) Inline Style, 2) embedded styles and 3) External styles.
Today we learn this three type CSS structure.
More learn & get any tag: goo.gl/1ENhWx
0 notes
Photo
How to use HTML editor?
First install any HTML editor. Click to Start Menu. Search or find your installed HTML Editor. Click your installed HTML Editor. Now open your HTML Editor. Now write your HTML code to your HTML Editor. Now save your code using your right file type like .html, .css, .php, .js etc.
1 note
·
View note
Link
HTML editors is an program or software that you can write your HTML, CSS, PHP code and save it using .html, .css, .php or others file type.
Detils: goo.gl/wyMFpg
0 notes