PHP Tips

Function Overloading and Overriding in PHP

Function overloading and overriding is the hallmark of object-oriented programming in PHP. Function overloading means that multiple functions have the…

2 years ago

About PHP language & CodeIgniter

Building web applications with PHP is a pretty simple process. As a PHP developer, you can develop practically anything, including…

12 years ago

Uploading files with PHP

Upload an image or file to your server without using your FTP. Step 1: Open a web editor, then paste…

12 years ago

PHP send email with image attachment ?

How to send Email attachment using core php email function. Here we have created a new example where you can…

12 years ago

how to store and retrieve array from Session variable using php?

Here is simple code to illustrate use of session to store array that can be used in other script.<?phpsession_start();$_SESSION['type'] =…

12 years ago

How to Upload Image using PHP?

Here you can learn Upload Image and at a same time information stored into database.<?php//define a maxim size for the…

12 years ago