Sort the array of characters in the array: PHP
If you want to select an array in the array to retrieve data from a particular variable and sorted you can use the following as...
Creating a pyramid shape: PHP
To create a pyramid we need 3 repetitions for example as follows: <?php //PYRAMID TOP for ($i = 0; $i < 5; $i++) { for ($j...
Creating a series of numbers and multiples “dangdingdong”: PHP
Here I want to share my experience at that time I was working as a programmer php test and given the matter as follows: Make...
Checking Prime Numbers: PHP
To know the number is prime or not using the programming language PHP, we can use the following method: <?php $n = 4; // please...
PHP: Introduction Operator
Table of arithmetic operators Sample Script aritmatika.php <? php $ value1 = 32; $ value2 = 8; $ number = $ value1 + $ value2; $...
PHP: Data Types and Variables
Variable is a very important thing in a programming language. Since most of the programming process is to process the data stored in the variable.variable nameThere...
Displaying Data
To display the data value of a variable or a string, you can use the command echo or print . Different from the second command is a command print can behave like...
PHP configuration
The function is used for pushing displays PHP configuration is phpinfo () . This function will display information related to the PHP configuration that you use. Because each operating...
Comments in PHP
Comments in PHP intended to provide an explanation for the program that has been written. Such information will be very useful when other programmers aiming to...
HTML in PHP
Once you learn PHP in HTML , Now you will learn HTML in PHP. You can also call and use the PHP scripting in HTML tags ( non-embedded program ). Syntax...