Category: Web Development
Built in Web Server in PHP
Built in Web Server in PHP and How to Use it What is Built in Web Server? Built-in web server is used for development and testing the PHP application without using LAMP, just launch the built-in server from the command
Install and Update WordPress in Local Machine
How to install and update WordPress in local machine Here are the steps to install WordPress on local machine: 1. Download zip file of WordPress new version – Using this \link https://codex.Wordpress.org you can download the zip of WordPress of
Creating a PDF on Air and Send as Attachment
How to create a PDF on air (in a variable) and sending it as an email attachment? Problem:- I need to create a PDF and send it as an attachment with email but I don’t have permission to write a
How to install, update and create module using NPM
What is Node Package Manager (NPM), how to install, uninstall and update It? How to create module in Node JS? NPM is a package manager for JavaScript programming language. It is basically an online shared repository where we can find,
Salesforce | Different ways to use datepicker on visualforce page
1. Apex:inputfield: We can simply use apex:inputfield and bind the field with date type field and it will automatically use the Salesforce Calander: <apex:page standardcontroller=Contact> <apex:form> <apex:inputfield value=”{!Contact.Birthdate}”> </apex:form> </apex:page> 2. Apex:inputtext: <apex:page standardcontroller=”testcontroller” id=”vfPage”> <apex:form> <apex:inputText label=”Birth Date” value=”{!birthdateVariable}”
Bootstrap tooltips customization with Examples
How to create and customize Bootstrap tooltips (with examples) A tooltip is a small pop up that appears when user places mouse pointer over an element such as link, button, icon or any other element to provide information about the
Nodejs callback with example
Nodejs callback A callback is a function that can be called on the completion of a given task to prevent blocking. As a result of it other code will run without waiting for a task to complete. This feature makes
Understanding Inflector in Cakephp
Understanding the purpose and usage of Inflector in Cakephp The Inflector class in cakephp is used to modify single/multi word strings into different formats using its build-in methods. We don’t need to use core php methods such as str_replace if
DAO with JPA (and service layer/EJB3-Session Beans) or not
There is a lot of discussion on internet about whether to have DAOs or not with JPA and service layer or with session beans (which is the service layer). My personal opinion is more favored towards DAO layer and some
