Depending on which programming language is used on your site (PHP, ASP, ASP.net, etc.) or whether you support Linux or Windows – specialized hosting is important to reach the full potential of your website and ensure its error free work.
Check out web hosting reviews to see which hosting sites are recommended to build your website.
In computer science a search algorithm is a technique of finding a particular item among a collection of items. Searching for data is the second most common activity (after sorting data) necessary for creating many types of programs.
Sequential Search
In this technique we scan the entire list from the start or beginning till we encounter our sought value. If we reach the end of the list and did not encounter our sought value then it means that the value is not present in the list.For small lists, a sequential search is simple to use and fast. But if you need to search... [Read More]
I expected wordpress to have some built in support for listing all authors of the blog in a select box but that is not the case yet in Wordpress 2.9.2.
I was certain that I can get this done using wp_list_authors but actually it was a not that straight forward and so let me share this with you. I think this will help those looking for such functionality.
The Code
What I did is replaced the content of list items ( <li> ) into select box options ( <option> ) and added a JavaScript function to redirect user to... [Read More]
In computer Science and mathematics sorting is any technique that puts elements of a list in a certain numerical or lexicographical order.We will discuss some of the commonly used sorting algorithms which has been implemented in various high level languages like C, C++, Java etc.
Bubble Sort
It is the simplest sorting algorithm. It works by repeatedly stepping through the list to be sorted, comparing each pair of adjacent items and swapping them if they are in the wrong order. The pass through the list is repeated until no swaps are needed, which indicates... [Read More]
In the first article we have discussed about Type 1 JDBC driver. In this article we will discuss about the practical configurations essential for the successful execution of the JDBC program. According to the previous article "sun.jdbc.odbc.JdbcOdbcDriver" is the driver class name of the JDBC-ODBC driver. This driver is included in the JDK run time environment.Therefore we need not specify any JAR file in the classpath. To load this driver we need to call Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").... [Read More]