
Search In
Some useful WP function for developing themes
have_posts();
This function check whether the current WordPress query has any results. This is a Boolean function, and returns either TRUE or FALSE.
syntax is :
if ( have_posts() ) :
while ( have
CakePHP allows us to set up a combination of models,views ,controllers and release them as a packaged application called Plugins which can be used in the CakePHP applications.
Some of the useful Plugins in CakePhp web application are as follows:-
There are certain steps that need to be followed for enabling CORS in ASP.NET Web API :
Step 1: We Have to install the CORS Package, and to install it , open Nuget Package Manager console and type and run command Install-Package Microsoft.AspNet.
Problem in selecting Radio Button inside Repeater Control:
Incase we are using RadioButton inside a Repeater, one common problem which we face is that we are not able to select single RadioButton, i.e. If we select one RadioB
Hi all,
In angularJs filters are use to change and modify the data. We can use multi filter using pipe (|).
Below is some example of filters-
1) uppercase
2) lowercase
3) currency
4) filter
5) orderby
Uppercase :-
Uppercase filter is use to mak
In security,view and action use the following pattern :
1-For a menu: _menu
2-For a view: _view_, where view_type is kanban, form, tree, search, …
3-For an action: the main action respects _action. Others are suffixed with _ , where de
We have different database vendors out in the market and every vendor has different configuration for using their database. Here in this article we will talk about the getting connection of Oracle database using Jdbc.
For getting connection of Orac
Here we will learn how to check if the password entered in the two input boxes, is correct or not using jquery. In the below example initially there will be two input box with labels “password” and “confirm password”. When we type a password in eithe
PreparedStatement interface:
It is used to execute a SQL parameterized query and it compiles only one time and we can use it many times. It extends the Statement interface. It is more secure then Statement interface and safely provide valu
PHP has a large number of variable the are defined already.
PHP provide an additional set of predefined arrays containing variables from the web server.
PHP superglobal
1. $GLOBALS- It got the reference to every variable in the global scope.
<
