Category: PHP

How To Change Different PHP Version By .htaccess

Hi Friends, In this article I will explain how can we change version of PHP by htaccess. Sometime some application need php version 5 instead of 4 and on server php4 version used by default but If php5 already installed on server then we can use php5 version by putting one line in .htaccess file.

Read More »

How To Check URL Protocol Is https by PHP

Hi friends, Today in this article I am writing about how can we check or found that URL is using https protocol or not by PHP. It is very simple in PHP to find this but as this is small thing, So it is obvious that most of people dont have any attension on it. Many programmer trying to find…

Read More »

How To Change Object Into Array in PHP

Hi Friends, When I was working with one wordpress project I got one object array by get_posts method, But I want array instead of object array. So i search a lot for it and i found so many solutions and then finally i create one funtion in which you have to pass object only and it will return array from…

Read More »

FCKeditor Image Uploading Not Working

Hello Friends, Some days ago I was working on fckeditor because I was getting error in it that i was not able to upload image. When I uploading image it is telling me that image uploaded successfully, but when I was checking in images it was not exists. So I have started searching about it and finally found solution of…

Read More »

How To Take Full Backup From cPanel By PHP Script

Hello Friends, as a developer i am daily using cPanel and its features and in that features cPanel provide one feature to take full backup or to take backup of any folder from the server but sometimes in some circumstances we have to take daily/weekly/monthly full backup of files by PHP script by running cron job. Yesterday i was searching …

Read More »

How to:Start mails in local in Apache (Xampp or Wamp Server)

Hello Friends, Today i am writing this article for starting mails in xampp or wamp server whatever you are using for developing PHP based web application. By default xampp or wamp server don’t have mail facility (using SMTP) ON, So to do this we have to modify some settings to start mail functionality in local using SMTP. I have search…

Read More »