Starting a Session in PHP

Starting a Session in PHP

Starting a Session in PHP Starting a Session in PHP.  When you are opening , using and closing an application or a website, that counts as a session. But the system does not have any Idea , who is opening and closing an application or  a website .As the Web Browser or the internet does … Read more

Setting Cookies in PHP

Setting Cookies in PHP

Setting Cookies in PHP Setting Cookies in PHP. This is a normal practice which lots of web master do to track their USER or Audience visits & interests. Many Large sites has cookies to gather data and analytics from users , in order to study the behaviour of their User and customers.The Ultimate goal is very obvious … Read more

Include other PHP File in PHP Script

Include other PHP File in PHP Script

Include other PHP File in PHP Script Include other PHP File in PHP Script. This is a wonderful function which PHP have which enable us to include files along the way. What are the Benefits of including PHP File in your PHP Script Your Code will look tidy Easier to do debugging when an error … Read more

PHP Function Arguments

PHP Function Arguments

PHP Function Arguments PHP Function Arguments. A Function is a tool you create to do specific task. Parameter or arguments can pass through a function.The Function will then accept the inputed parameter and process the output. A Function can choose to return a value , or not returning a value To create a PHP function. … Read more

Random Background Colour PHP

Random Background Colour PHP

Random Background Colour PHP In this article , we will try to generate a random back ground colour using PHP, when the Browser is being refresh. Follow the Step by Step below First we will create a function , i named it “GenerateColor()” Then I will assign the First value”#” to  $randomcolor I assign an initial … Read more