How To Know Connected Wifi Password In Window 10?

Find WiFi password Windows 10 image

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 ?

PHP sitemap random URL generator image

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

PHP developer interview questions image

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 ?

MySQL stored procedure insert PHP image

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 ?

PHP website metadata extraction image

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%”…

How to Answer for the Tell Me About Yourself Interview Question ?

Interview tell about yourself answer image

Commonly interviewer start an interview with some simple question like “Tell me about yourself” . The purpose of asking this question in the first is to make you feel more comfortable during the interview process. It is also a way for the interviewer to judge your personality to help determine if you are best fit for the job. This question is seems like so simple that is why most of the people neglect to prepare for it, but it’s crucial. so to prepare the answer for this question you should…

Most important 35 PHP interview questions and answers for freshers

PHP interview questions for freshers image

 I am an experienced PHP developer so here I am sharing my own personal interview experience. I had given around 40 interview’s that time and I got selected in my last 5 interviews. So in this article I am sharing 35 basic PHP programming interview questions with answers that will surely helpful for freshers to get a job. All questions are related to php, mysql, javascript, html, css and jquery. Question #1 – What is PHP? PHP is an open source server side scripting language mostly used for web applications.…