
Search In
In this blog, we are adding input field by clicking on more button and removing input field by clicking on erase button. The procedure of doing this is very simple and easy. I have provided the code for doing this below .
In below code fir
Welcome to FindNerd, today we are going to discuss how to get latitude and longitude of the user's position.
If you want to get latitude and longitude of the user's position, then you should use getLocation() method.
In a web application, t
As we all know that validation plays an important role in any technology. In cakephp 3.x we will implement either model validation or javascript validation. Steps to implement model validation is as follow.
Step 1: Fisrt we have to set the validatio
In any project validation plays an important role.In laravel 4.x we have validation class which is used to
validating data and validating error message.
Basic Validation Example:
$validator = Validator::make(
array('name' => 'Dayle'),
a
Step by Step installation of laravel 4.x.
Step 1:
For laravel first we should have composer. So for composer download composer.phar and if you use window then you should use composer window installer.
Step 2:
After uploading composer we will ins
Requirements for Traceability Matrix :-
Traceability Matrix can be determined using a kind of tools or equipment, in other words requirements management software, spreadsheets and databases, or yet with hyperlinks in a word processor or tables. Trace
PDO does not account for database specific syntax. It can allow for the process of switching databases and platforms. PDO can simply switch the connection string in many instances.
PDO supports the following database:
PDO_FIREBIRD ( Firebird/Interbas
There are n number of functions of URLs in laravel 4.x which is used to perform action that are
action:
action is a function which is used to generate a URL for a given controller action.
Example:
$url = action('HomeController@getIndex', $params)
In Laravel 5.x we have lang class which will help us to retrieving string in different languages that will help us to easily support multiple languages.
The folder structure for /resources/lang files are
/resources
/lang
/en
Sub query is one the important section of database query.There are n number of situation where we want to implement sub query to fetch the data from the table. In Laravel 4.x there is no specific keyword to perform any
sub query.To perform sub query
