The following is a list of Drupal interview questions for Technical skills Senior Drupal Developers


If we save any node, then that table gets saved in the database.If we save any user profile data, we save it in which table gets saved in the database.How to Fetch Data From Database & Display Drupal 8How to store data in a database from a custom form and render data in a twig … Continue reading The following is a list of Drupal interview questions for Technical skills Senior Drupal Developers

Angular Basic Interview Questions

Angular Basic Interview Questions


1. What is Angular Framework? 2. What is the difference between AngularJS and Angular? 3. What is TypeScript? 4. What are the key components of Angular? 5. What are directives? 6. How to Create Custom Directive? 7. What are the components? 8. What are the differences between Component and Directive? 9. What is a template? … Continue reading Angular Basic Interview Questions

The 10 most critical Drupal security risks


1. SQL Injection You shouldn't use data that you don't trust (as a feed, a user input, another database, etc) directly in a database query without escaping it: index.php?id=12 mysql_query("UPDATE mytable SET value = '". $value ."' WHERE id = ". $_GET['id']); Instead, you should use Drupal functions passing the user input as parameters: db_query("UPDATE {mytable} … Continue reading The 10 most critical Drupal security risks

How to Get Featured Image from WordPress REST API


Luckily, there are few ways that you can get the featured image after calling the REST API. Method 1: Use Better REST API featured images plugin. I don’t recommend using this plugin unless you are super lazy. Method 2: Add ?_embed at the end of the URL. Take a look at the example below https://example.com/wp-json/wp/v2/posts?_embed Your featured image is … Continue reading How to Get Featured Image from WordPress REST API