Category: PHP

How to create a Google Charts from PHP with MySQL Database

How to create a Google Charts from PHP with MySQL Database


If you need to display some sort of statistics on your website, it would be beautiful if you represent it with charts. It may be difficult to create those charts on your own. But, Google provides visualization api that makes it easy to create google charts from MySQL database using php. Basic Setup to Generate … Continue reading How to create a Google Charts from PHP with MySQL Database

Login With Google Plus Using PHP

Login With Google Plus Using PHP


How To Make Login With Google Plus Using Google Plus API and PHP cURL we will make login with google plus easily. Create A Project Go to Google Developer Console and create a project: Now open your project, and in left menu, choose "API Manager": Now click on "Google+ API": Now on "Enable API" button: Now in left menu, … Continue reading Login With Google Plus Using PHP

How To Send Email Via Gmail API Using PHP

How To Send Email Via Gmail API Using PHP


Using PHP cURL and Gmail API, we will send email easily, I made “Gmail API Script” using PHP, to send messages via Gmail API easily, we will use it in this tutorial. Create A Project Firstly, go to this tutorial and read “Create A Project” section, now create your project and enable gmail api, after that … Continue reading How To Send Email Via Gmail API Using PHP

Questions 2016 for freshers


We hope you find these questions useful. If you are an interviewer, Take the time to read the common interview questions you will most likely be asked. Below are the Recently asked 15 PHP interview questions 2016 for freshers Q. What is the difference between $name and $$name? A. $name is variable where as $$name … Continue reading Questions 2016 for freshers

Frequently Asked OOPS PHP interview question and answer for fresher.


In this section we are providing you some Recently asked OOPS PHP interview question and answer for fresher. Q.What is Object Oriented Programming? This is usually a pretty open ended question. You should understand classes (objects are instantiated classes), abstract classes, interfaces, methods, properties,inheritance, multiple inheritance as well as why OOP is helpful as compared … Continue reading Frequently Asked OOPS PHP interview question and answer for fresher.

How to Remove .php, .html Extensions with .htaccess File

How to Remove .php, .html Extensions with .htaccess File


An .htaccess file is a simple ASCII file that you can create with a text editor like Notepad or Notepad++ . It provides a way to make configuration changes on a directory/folder. instead of this we can do more thing with .htaccess file like Redirect the user to different page, Password protect a specific directory, … Continue reading How to Remove .php, .html Extensions with .htaccess File

Top PHP Interview Questions with Answers for freshers and experienced


What is PHP stands for? Hyper text Pre Processor Who is the Father of PHP? Rasmus Lerdorf What is PHP? PHP is a server side scripting language commonly used for web applications. PHP has many frameworks and cms for creating websites. Even a non technical person can create sites using its CMS. WordPress, osCommerce are … Continue reading Top PHP Interview Questions with Answers for freshers and experienced

# 1146 – Table ‘phpmyadmin.pma_table_uiprefs’ doesn’t exist

# 1146 – Table ‘phpmyadmin.pma_table_uiprefs’ doesn’t exist


phpmyadmin reported the following error “# 1146 – Table ‘phpmyadmin.pma_table_uiprefs’ doesn’t exist” Modify the configuration file config.inc.php phpmyadmin $ Cfg [‘Servers’] [$ i] [‘table_uiprefs’] = ‘pma_table_uiprefs'; Changed to: $ cfg [‘Servers’] [$ i] [‘pma__table_uiprefs’] = ‘pma__table_uiprefs'; Restart apache, web page log to re-enter, problem solving