
Search In
Enabling caching .
Caching is enabled in three step.
1) Create a writable directory on your server where you want strored the cache files.
2) Set the path to your cache folder in your application/config/database.php file.
3) Enable the cachi
Hello Everyone , In this blog we will discuss about how to use MYSQL in node.js.
node-mysql is one of the best modules which can be used for working with MySQL database.
To install the MySQL in node.js driver you have to follow up with the below pro
We can use the serialize() method to get the data of a form. This method creates a text string in URL-encoded notation by serializing form values. It helps to select more than one element of the form.
Syntax:
$(selector).serilaize();
Example:
&

Hello Reader's!
If you are new to Wordpress and want to make a login custom page, then you can see an example below:-
First you have to create a page on the root, name it login.php
<?php
/*
* Template Name: Sign In
*/
if($_POST['submit'] ==
UserEntities objUserEntities= new UserEntities();/*Create object of user entity
/* Add records into the database */
public void AddUser(User objUser)
{
objUserEntities.AddToUsers(objUser); /*Linq has its own function to insert th
How to make a progress bar in Unity3D Game
Calling LoadLevelAsync like TheDarkVoid suggested will start the loading process. You could put it in a coroutine so other parts of the game can keep running. It returns an AsyncOperation.
Example:
var s
Install Unity :
Below are the steps to install Unity 3d:
First download the Unity 3d from the URL: [http://unity3d.com/unity/download][1]
Then double click on the UnitySetup-4.3.1.exe
Click on Next button to set the installation path.
After setti
Terrain in Away3D (Part 1)
User are always curious with the heights of Hills, Mountains and Depth of river and wells in the game.
He always thinks how these things are done.
By this blog you will have a fair idea about Height Maps, Alpha Maps used t
Why Char array is better than String for storing secure data like Password in Java?
As we know that String is immutable in Java if we store password as String, it will be available in memory (Heap) until Garbage collector clears it and since String
Sometimes we need to display ads in our application.To display the multiple images one after another in some time interval write the following code:
Create a customTimerTask class that extends the TimerTask class
public class customTimerTask exte
