PHP Articles

How to work with guzzle http in codeiginter?

guzzle is php http client that is used to send request to web services. Installation : First download guzzle files from here and put those files in application/libraries folder. Now load this library in controller’s...

Read More

Get host name, username details from phpmyadmin

login to phpmyadmin on home page there is a block of server detail

Read More

How to unzip files on filezilla using php script?

FileZilla itself does not provide functionality to unzip files on server. So here comes a handy solution using PHP. Navigate to your directory where the zip folder is Here create a file unzip.php Now edit...

Read More
PHP basic interview questions

PHP basic interview questions

Read More
How to create shortcode in wordpress

How to create shortcode in wordpress

What is shorcode in wordpress? Shortcode basically group of codes that perform an action while called via small code. For example: [myform] now when using this in theme or code editor it will display a...

Read More
How to get featured image url in wordpress.

How to get featured image url in wordpress.

to get featured image url in wordpress use following code if you are not using custom query loop then simply use Also you can use this get featured image size you can pass the featured...

Read More
How to change file permission using wp-config.php

How to change file permission using wp-config.php

you can change file permissions using wp-config.php Add this to wp-config-php this will set the 777 permissions on all your files and folders and usually not recommended. Preferable set the permissionas to 0755.

Read More
Remove FTP Permission for  installing plugins

Remove FTP Permission for installing plugins

Sometime while installing a plugin you see a popup that ask for FTP credentials. You can disable this via wp-config.php Add this code in wp-config.php What does ‘FS_METHOD’ do? This bypasses WordPress’s recurring prompts, and...

Read More
5 Essential Plugins for website

5 Essential Plugins for website

In this article I am going to explain few plugins that may help you while creating a wordpress website. Yoast SEO For WordPress SEO this plugin is extremely useful. It take care all seo of...

Read More