Every programming language has some naming convention, JavaScript is no exception. It is good practice to follow naming conventions while naming variables, functions, classes and so on. Following are some [ … ]
What is a nofollow Hyperlink
Nofollowed links are hyperlinks (anchor tag) with a rel=“nofollow” attribute. The nofollow attibute tells search engines to ignore that link. It can be used anywhere in a html page. You [ … ]
Deploying Angular App in Production
Once you are done with development of your angular project in your local machine, now it’s time to build and deploy the same in production server. We can deploy angular [ … ]
How to Find a File by Name in Visual Studio Code
In Windows and Linux, use Ctrl+P or Ctrl+E short cut to open search panel and then type file name. In Mac OS, use command key instead of Ctrl.
Bootstrap Basic Template
Here is Bootstrap 3 starter template (basic template) to kick start UI development using bootstrap. No need to download any libraries. All required libraries (CDN) are included in the template. [ … ]
Create Angular Project Using angular-cli
Creating angular seed or getting started project using angular-cli is pretty simple. In this article I will show you how it can be done in Windows. Follow the following steps [ … ]
PHP Data Types
There are eight primitive Data Types in PHP. String Integer Float or Double Boolean Array Object NULL Resource
Securing PHP Web Applications
1) Always validate data in the server side before processing it, even though you are validating in the client side using jQuery/JavaScript. 2) Never trust user inputs. We should always [ … ]
Transaction in MySQL
Sometime during software development, we face a situation where we need to execute more than two sql queries to successfully complete a process. All the dependent queries has to be [ … ]