TipsMake
Newest

PHP

How to use Enum in PHP 8
16 October 2023

How to use Enum in PHP 8

Enums are one of the basic features of many programming languages, and PHP is no exception. Here's everything you need to know about Enums in PHP.

How to Check PHP Version on Server
21 February 2022

How to Check PHP Version on Server

If you are interested in adding new features to your website or are trying to identify a programming error, you may want to check the PHP version your server is using. You can do

How to Make a PHP Hit Counter
05 March 2020

How to Make a PHP Hit Counter

Hit counters are a popular feature among new and experienced webmasters alike. There are several different methods of including a hit counter on your site, but this manual focuses

How to Create and Call PHP Functions
05 March 2020

How to Create and Call PHP Functions

Perhaps you have learned the basics of writing PHP scripts. But sometimes your code may be long and repetitive. PHP functions are a flexible and easy way to consolidate code. This

How to Install PHPMailer
05 March 2020

How to Install PHPMailer

Need to send emails from your PHP application? The default mailing system in PHP (mail()) doesn't offer the customization features of PHPMailer, which is the most popular mail

How to Write PHP Scripts
05 March 2020

How to Write PHP Scripts

PHP is a server scripting language used to make web pages interactive. It became widely popular due to its ease of use, interactivity within web pages, and integration with HTML.

How to Open a PHP File
05 March 2020

How to Open a PHP File

This wikiHow teaches you how to open and edit a PHP programming file on your Windows or Mac computer. Download and install Notepad++. Notepad++ is a free, Windows-only text editor

Array (Array) in PHP
25 May 2019

Array (Array) in PHP

An array is a data structure that stores one or more of the same value types in a single value.

String (String) in PHP
25 May 2019

String (String) in PHP

String is a sequence of characters, you will find available string handling functions in PHP at PHP String (String) handler

Insert file in PHP
25 May 2019

Insert file in PHP

You can insert the content of a PHP file into another PHP file before the Server executes it. There are two functions in PHP that can be used to do this.

File & I / O in PHP
25 May 2019

File & I / O in PHP

In this article we will learn about explaining file-related functions in PHP.

PHP functions
25 May 2019

PHP functions

PHP functions are similar to other programming languages. A function is a piece of code that takes one or more inputs in the parameter template, and performs some processing and

Cookie in PHP
25 May 2019

Cookie in PHP

Cookies are text files stored on the Client and they are kept for the purpose of tracking. PHP supports HTTP Cookies.

Session in PHP
25 May 2019

Session in PHP

Another way to make data accessible on different pages of an entire Web site is to use a PHP Session.

Send Email using PHP
25 May 2019

Send Email using PHP

PHP must be configured correctly in the php.ini file with details about how your system sends email. Open php.ini available in the / etc / directory and find the section that

Upload File in PHP
25 May 2019

Upload File in PHP

A PHP script can be used with an HTML form that allows users to upload files to the Server. First these files are uploaded to a temporary directory, then moved to a destination by

Standard writing code in PHP
25 May 2019

Standard writing code in PHP

Each company has different encryption standards based on their practical standards. Encryption standards are necessary because there may be many developers working on different

2 3