
Search In
My previous article "How to connect MySQL database using MySQLi procedural function" demonstrates the use of MySQLi procedural function mysqli_connect() is used to connect with a MySQL database and MySQLi extension also provides an Object O
In this small blog we will learn how to create a file with different file extensions and how can we write some text or paragraph in the file? how to write content of one file to another file. We can also use cat command to append the binary data.We c
C# .Net : How to convert string to Guid ?
Guid represents a globally unique identifier. Guid in .Net framework is identified by System.GUID class.
Program to generate a guid in .Net Framework using C#.
using System;
using System.Collections.Gener
Hi,
Sometimes we need to show our custom accessory view when UITextField/UITextView is in editing mode or being edited. We can use inputAccessoryView property to assign a view just above the system keyboard.
Input accessory view is very help
Hi All,
In many of our scenario's we intent to make ajax calls to get or post data. What if the session logged off before you made the ajax call, what will and should happen in this scenario. What will happen is the call will never be completed
Whenever we create a project in visual studio, a file named AssemblyInfo is created by itself which contains the attributes used to define the version of assembly during compilation.
Versioning an assembly helps to identify deployed assemblies and h
Hi Friends,
Today I am going to tell you how we can integrate pagination in rails. First let's know why pagination is required in an application.
Pagination is fetching data in batches and rendering one batch at a time. It is necessary be
Hellow Readers ,
Today in my blog I am going to explain about Quick searching in MySQL using FULL-TEXT INDEXING. Many times we made a big mistake during searching from MySQL, we use the wildcard and like operator "LIKE %helpful website%" w
Apache Felix Gogo helps to get the details of all modules installed in Liferay 7. It is very useful when overriding JSP or Actions.
Before overriding, you must know the bundle in Liferay's module framework and its version so that you can
To bind checkbox with enum, we have to write some custom code. Here, below is the example of binding checkbox with enum.
Suppose we have a enum EmployeeGroup
public enum EmployeeGroup
{
[Display(Name = "Group 1")]
Group
