
Search In
AngularJs provide different services to organise and reuse the code multiple times in the app.
These are the two services:
1. Service
2. Factory
These services are singleton objects.
Lets Discuss them:
1. Service: Service are singleton objects in wh
Bucket testing is a technique to identify the impact of New product design or in other words we can say New UI on a website benchmark.
In Bucket testing two different versions of single or set of webpages are run. The motive is to find out differen
Return False :-
Basically returning false is a way to tell your action (like button click event, submit and load etc. ) is not firing. Return false do the three basic things
event.preventDefault();
event.stopPropagation();
Stops the callback execu
Traits in php are the mechanism for reusing the code in a single inheritance.
Trait is as similar as a class, but only focus to group functionality in a consistent way to fine grained.
We can not instantiate a Trait . It is for reducing some
Hello Readers !
We can simply upload upload CSV data into database by two simple ways.
Step 1 – Data Base Connection
<?php
$db = mysq_connect("Database", "username", "password") or die("Could not connect.");
if(!$db)
die("no db");
if(!m
Hello everyone,
I was working with navigation bar and found a way so that you could make the status as well as navigation bar transparent, your views could be shown bellow to the navigation bar, by default activity is shown above the navigation bar
Hello Reader's!, If you are developing the website that takes input in XML and you want it to convert in PHP, Then you have to use some of the library extensions to do so.
Let suppose you have the XML as given below:-
<tag1Version="1.0">
&
A union is a special data type available in C that allows to store different data types in the same memory location just like structures in C.
Union uses a single shared memory location which is equal to the size of its largest data member. It provi
Error is the real something happen from exception. Exception is the way to catch the error. For example when you get the variable let say String str, we got Null Pointer. The error is because our variable has NULL value and it catch with Exception: "
It becomes easier with Guzzle, which is a PHP HTTP, to send HTTP requests. Moreover, one can easily perform the task of integrating with web services. Guzzle enables to send both synchronous and asynchronous requests.
Guzzle using Laravel 4.x:
You d
