Best coding Practices – PHP
Never put phpinfo() in the root directory Assignments in arrays may be aligned. When splitting array definitions onto several lines, the last value may also have a trailing comma. Never …
Never put phpinfo() in the root directory Assignments in arrays may be aligned. When splitting array definitions onto several lines, the last value may also have a trailing comma. Never …
Both have similar goals, but communicating with a different type of audiences. Here are the key differences between B2B and B2C. B2B (Business to Business) A business that operates by …
Install LAMP stack on Ubuntu using tasksel Update system and packages by this command: # sudo apt-get update Install tasksel using this command: # sudo apt-get install tasksel Use this …
Run following curl command to download Microsoft GPG key # curl https://packages.microsoft.com/keys/microsoft.asc | gpg –dearmor > microsoft.gpg Then install the key via command: # sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg Add the …
Type following command to create a new project: # ng new <PROJECT-NAME> It will ask “Would you like to add Angular routing? (y/N)” – Type y and hit EnterOn the …
How to Install NodeJs and Angular CLI Steps for installing NodeJS Open https://nodejs.org/ Download the LTS version and install it. ( *LTS – Long term support) After installation, opens the …
1. Check the location of apache.conf file # locate apache2.conf 2. Open this ‘apache2.conf’ file with any editor and include phpmyadmn configuration file path under it # vi /etc/apache2/apache2.conf 3. …
Donation form builder It allows to create a customized donation form (online giving forms) from Bloomerang dashboard, that can be placed on the website. New or existing customers who make …
(*) Correct answers are marked in Green Which of the following is a benefit of using Scrum? A. It enables detailed planning at the beginning of the project hence ensures …
1. Firstly install node.js on your machine. # sudo apt-get install nodejs # sudo apt-get install npm 2. To install the firebase command line tool, use ‘npm’ to install Firebase …