
Search In
Hello Reader's if you want to store some data on user local system so that even he turn off or refresh the webpage the data will still remains the same then you can use the Javascript for that.
Let's consider an example where you have an counter wh
Many of the wordpress themes are having options in admin panel for uploading and changing the logo. But if we want to make a custom logo that is used in converting HTML to wordpress or for making any custom wordpress theme or we do not have any optio
When we have multiple check box to select then we need to check all these one by one it will take more time to check all so by using jsscript we can check and unchecked all check box on a single click. In the below script can check and uncheck all ch
In MySQL, the WHERE clause is used to filter records from a table. The WHERE clause is used to get the records that match the specified criteria in that.
WHERE Clause Syntax
SELECT column_name,column_name
FROM table_name
WHERE column_name operator
Hello Reader's if you need to make validation of credit GivenCard using PHP then is blog will be helpful to you.
This is only making the validation on user side you should better use seconder validation on payment gate way also.
So the code liberay f
Hello Reader's if you want to build light process that update the shopping cart then you can see how to make the code.
Lets start with the html page for shoping cart
<form ng-app ng-controller="OrderFormController">
<h1>Services</
Hello Reader's if you are new Angular JS and you want make dynamic title by it then this blog very helpful to your.
By using the title as dynamic you will be free from all the pages with their title, You just need to set it at one place then all the
For example Let’s create an alert box, so for this we define the base styles; some padding , a border and background.
To start with it, we have to set out the list of colors and name variations of the alert box. Then count the number of variations u
SQL Server 2012 Programmability Enhancements
SQL Server 2012 supports a great programmability enhancements and functions :
T-SQL THROW Statement
Now SQL Server 2012 has improved error handling by introducing throw statement for throwing excep
If we try to return a JsonOject in jersey, like this
@Path("/formSubmit")
@POST
@Produces("application/json")
public JSONObject formSubmit()
{
JSONObject json1 =new JSONObject();
return json1;
}
it may give an error (org.codehaus.jackson
