TipsMake
Newest

PHP - Page 2

Variables are predefined in PHP
25 May 2019

Variables are predefined in PHP

PHP provides a large number of predefined variables for any script that runs. PHP provides an additional set of arrays containing variables from Web Server, environment variables

Regular Expression in PHP
25 May 2019

Regular Expression in PHP

Regular Expression is nothing but a sequence or pattern of characters. They provide the basis for pattern matching.

Bug and Debug in PHP
25 May 2019

Bug and Debug in PHP

The program rarely works correctly right from the first time. Many things can be wrong in the program causing the PHP interpreter to generate an error message. You can choose

PHP & AJAX
25 May 2019

PHP & AJAX

AJAX stands for Asynchronous JavaScript and XML. AJAX is a new technique for creating better, faster, and more interactive web applications with the help of XML, HTML, CSS, and

Object-oriented programming in PHP
25 May 2019

Object-oriented programming in PHP

We can imagine that the universe was made up of different objects like the sun, the moon, the earth, and so on. In the same way, you can imagine a car made of different objects

PHP & XML
25 May 2019

PHP & XML

XML is a markup language that is quite similar to HTML. An XML document is plain text and contains tags limited by. There are two major differences between XML and HTML.

PHP for Programmer C
25 May 2019

PHP for Programmer C

The easiest way to think of PHP is as C is interpreted that you can embed in HTML documents. PHP is quite similar to C, except for untyped variables, Web-specific libraries are

PHP for PERL Programmers
25 May 2019

PHP for PERL Programmers

This chapter will list some of the major similarities and differences between PHP and PERL. This helps PERL programmers understand PHP faster and avoid common errors.

Date & Time in PHP
25 May 2019

Date & Time in PHP

Date is a part of everyday life and it becomes easy to work with them without thinking. PHP also provides powerful tools for easier date manipulation.

Great progress of PHP 5
25 May 2019

Great progress of PHP 5

PHP 5.0 officially released on July 13 is one of the events that has attracted attention in the developer community. PHP is currently the most commonly used programming language

Thumbnail processing with PHP
25 May 2019

Thumbnail processing with PHP

In essence, there are many websites hosting separate photo libraries and shared designs, all embedded in the page with thumbnails, the purpose of this is when the user clicks. On

Instructions on how to check the PHP version
25 May 2019

Instructions on how to check the PHP version

If you are interested in adding new features on your site or trying to identify a programming error, you may have to check the PHP version that the server is currently using. Join

Why should you learn PHP programming language?
25 May 2019

Why should you learn PHP programming language?

80% of the top 10 million websites use PHP programming language. PHP is very popular for freelance work, because many small businesses or non-technical people want to use

PHP syntax
25 May 2019

PHP syntax

Before starting programming in any language, the basic syntax and program structure is very important. This chapter introduces you to the basic PHP syntax, including: php tags,

Variable in PHP
25 May 2019

Variable in PHP

The main way to store information in PHP programs is to use a variable.

What is PHP?
25 May 2019

What is PHP?

PHP started out as a small open source project, but on the rise, more and more people find it increasingly useful.

Constants in PHP
25 May 2019

Constants in PHP

A constant is a name or an identifier for a single value. The value of the constant cannot be changed during script execution. By default, a constant is case sensitive.

Operator in PHP
25 May 2019

Operator in PHP

What is the operator? The simple answer from expression 4 + 5 is equal to 9. Here, 4 and 5 are called operands and + are called operators.

1 3