How do you ensure API security and avoid data leakage
Ensuring API security and preventing data leakage is critical in any Salesforce integration. Whether you’re exposing or consuming APIs, you must follow best practices around authentication, authorization, encryption, data validation, and monitoring. Key Strategies to Secure Salesforce APIs & Prevent
Why HTML tables are discouraged and HTML DIVs are promoted?
Sometimes we have a choice to use <table> tag or <div> tag but there are many advantages of using <div> tag over <table> tags. Firstly when browser loads a table it waits for entire table text to reach browser side
Support Plan Content
Support Plans IT support has become important for every business company, no matter what is the size of business. Some companies do not tie up with any IT company for maintaining their IT infrastructure as they feel they can take
MySQL | Unable to create foreign key between two tables
We have two tables say table1 and table 2. In table 1, there is a field named Id and this field is set as primary key in table 1. We want to use it as foreign key in table 2.
PostgreSQL | Create a connection to a local postgres database in pgAdmin |||
Steps to create a connection to a local postgres database in pgAdmin ||| : 1. Make sure PostgresSql and its components should be installed in ubuntu system. 2. Check what databases are available in postgresSql through terminal 3. Login to
MySQL | How to support European characters on database level
European characters like è é å ñ ü ,à, è, ì, ò, ù – À, È, Ì, Ò, Ù, ™, © ,• , ∑, α, β, «, » do not get inserted correctly in MySQL by default. To fix it,
MYSQL | #1293 – Incorrect table definition; there can be only one TIMESTAMP column with CURRENT_TIMESTAMP
Suppose we want to have columns created_date and last_modified_time with default timestamp in any table in MySQL/Phpmyadmin. Let us take an example of Students table. Create table Students using following query : CREATE TABLE students( id INT AUTO_INCREMENT PRIMARY KEY
CakePHP | How to implement Internationalization in CakePHP 3.X
To implement Internationalization, CakePHP will pick all your strings which start with “__(“ double underscore ) and generate a default file for you. For Example: one of the strings defined in our project is as below: echo __ ( ‘ Gift
Selenium | How to perform search with Selenium script
In this post I will give an example of how to perform search with Selenium script on a webpage. Below is the screenshot of the webpage: Code to automatically enter a keyword “paint” in the textbox and then click Search
PHP | Convert Special Characters to HTML entities without using htmlspecialchars( ) function
We can’t use special characters like >,<,”,’ etc directly in code because browser mixes these characters with HTML tags and gets confused. So we can use HTML entities if we want to use special characters in our code. Below are
