35 Top WordPress Interview Questions And Answers for 1 Year Experienced

image source : google images In this article I am sharing top 35 frequently asked WordPress interview questions and answers for 1 year experienced. It will surely helpful for experienced WordPress developer. Question #1 – What is WordPress? WordPress is a free and open source popular blogging tool and a content management system (CMS) based on PHP and MySQL. It is completely free of cost and you can utilize it to make any kind of individual and business site. Question #2 – What are the Features of WordPress? For engineers, WordPress Have bunches…

How to Print Hello World Program in PHP ?

In PHP it is very easy to print “Hello World” program. “Hello World.” is the first program from where most of the beginner developers will start to write code in any language. Here is an example of how to print “Hello World!!” in PHP. Print “Hello World” Program :- In PHP we use echo to print a string and we always write the PHP code between <?php ?>  tag. Below are the example of print simple Hello World. <?php echo “Hello World!!”; ?> Output :- Hello World!! Check video :-

Top 35 PHP Interview Questions And Answers for 2 year experience

In this article I am sharing top 35 frequently asked PHP interview questions and answers for experience, This list of PHP interview questions and answers will be helpful for PHP experience developer. Question #1 – What is PHP? PHP is an open source server side scripting language mostly used for web applications. Its easy to learn compare to other programming language. PHP also a object oriented programming language like java, .net and c++. Question #2 – What is the difference between $message and $$message? They are both variables But $message is…

35 Important WordPress Interview Questions And Answers for 2 Year Experience

In this article I am sharing top 35 frequently asked WordPress interview questions and answers for experienced, This list of WordPress interview questions and answers will be helpful for WordPress beginner who just started their career as WordPress developer, and surely help you during interview session. Question #1 – What is WordPress? WordPress is a free and open source popular blogging tool and a content management system (CMS) based on PHP and MySQL. It is completely free of cost and you can utilize it to make any kind of individual and…

How To Sort An Array in PHP ?

Mostly web developers face the problem of sorting an array in PHP. So to save their time here I am sharing the solution with example. Feel free to join us and you are always welcome to share your thoughts that our readers may find helpful. There are 6 functions to sort an array in PHP – #1. sort() – Sort Array in Ascending Order Below example shows sorted array in ascending order  <?php $name = array(‘sonia’,’monica’,’raj’,’yogita’); sort($name); print_r($name); ?> Output :-  Array (     [0] => monica    …

How To Know Connected Wifi Password In Window 10?

Most of the peoples I found to get to know their connected wifi password for their system. So I have an idea to share the process by posting a article.You can recover your Wifi Password by using following steps. #Step 1 : Click on the icon Wifi in right bottom of your system. #Step 2 : Click on Network Settings .   The screen shows will be as below. #Step 3 : Now click on Network and Sharing Center option. After clicking on Network and sharing center the window should be…

How To Create Random URL .txt File From Sitemap.xml In PHP ?

Here I am sharing a simple PHP script to generate number of txt file from Sitemap.xml. This is a simple PHP script I wrote quickly for myself to create number of .txt files according to length of sitemap.xml for my page. This script will help you If you want to generate random .txt file from the URL existed in sitemap.xml. Follow the steps to generate random URL .txt file : Step #1 : Generate & Download sitemap.xml for your website. There are number of websites where you can generate sitemap.xml…

Best Interview Questions And Answers For Experienced PHP Developer

Question #1: How to get the location of php.ini? You can get the location of php.ini by using <?php phpinfo(); ?> code. Question #2: How to POST Data using CURL in PHP? you can execute POST data by using CURL as below : $data = array(‘name’ => ‘Ross’, ‘php_master’ => true); $url = ‘http://domain.com/abc.php’; // You can POST a file by prefixing with an @ (for <input type=”file”> fields) $handle = curl_init($url); curl_setopt($handle, CURLOPT_POST, true); curl_setopt($handle, CURLOPT_POSTFIELDS, $data); curl_exec($handle); curl_close($handle); Question #3: How to get duplicate values from array? you can get…

How To Insert Records Using Stored Procedure in MySql with PHP ?

If you want to insert large records in a table so it is great to do that by using of Stored Procedure. There are number of benefits to insert record with the use of Stored Procedure Stored procedure cached on server so the speed is more fast.  A Stored Procedures will be in one place so that there’s no confusion of having business rules spread over potentially disparate code files in the project. More secure because there is no direct access with tables in database. I am describing the process…

How to Get Title, Description, and Keywords of a Website in PHP ?

I found most of the people asking for a way to get meta data of a website, so I thought to share the logic with a very easy PHP script that will retrieve a website page title, keywords and description. You can also get the sitemap of a website url. Here I am describing it with proper UI and with output. So follow these steps. Step #1 : First design a page where you can input website URL. Copy index.php Code :- <form action=”show.php” method=”POST”>     <table cellspacing=”0″ height=”38%”…