My Reading Card

One card for all! Enjoy Reading life for less ! Great savings throughout 2012 for services that you use every day! + 50% off your hair & beauty, 50% off your restaurant bill, 50% off your massage session, Free coffee & tea, and more…   All that you see below, for only one of £25!

The Perfect Gift Ideas

Surprise your lover ones or your business partners with these interesting and beautiful personalized gifts. Our heat sensitive mugs have a black exterior finish, when the image is printed onto the mug this is hardly visible until hot liquid is added. The coating of the mug reacts with the heat and the mug changes from [...]

Browser Evolution – The History of Web Browsers

Looking at the browsers in the current browser race it is hard to remember the time when Netscape had over 86% of the market share. Once Microsoft started integrating Internet Explorer with Windows they unsurprisingly took over the market and dominated it for several years. Now they have a few other new and powerful competitors. [...]

Our latest projects

This is a list with our latest web development projects.

Why You Need a Website

Even if you’re not planning on selling online, a well-crafted site is essential for any business. Even if my business is very small, with just two – three employees, and our product really can’t be sold online, do I really need a website? This is one of the most important and most frequently asked questions [...]

Quit smoking! Try e-cigarette…

Gamucci is essentially an electronic smoking device or an electronic cigarette as it is sometimes referred to. It is a completely non-flammable product that uses state of the art sophisticated micro-electronic technology to provide users an alternative smoking experience without the flame, ash and tar found in real cigarettes. It looks like, feels like and [...]

What is the difference between JRE, JVM and JDK?

JDK (Java Development Kit) Java Developer Kit contains tools needed to develop the Java programs, and JRE to run the programs. The tools include compiler (javac.exe), Java application launcher (java.exe), Appletviewer, etc… Compiler converts java code into byte code. Java application launcher opens a JRE, loads the class, and invokes its main method. You need [...]

Install Sun/Oracle Java JDK/JRE 7 on Linux Fedora, CentOS/RHEL

This is a guide about how to Install Sun/Oracle Java JDK and JRE 7 update 2 (7u2) on Fedora 16, Fedora 15, Fedora 14, Fedora 13, Fedora 12, CentOS 6.1/6/5.7, Red Hat (RHEL) 6.1/6/5.7. If you’re looking instruction for Sun/Oracle Java JDK/JRE version 6 installation on Fedora 16/15, CentOS/Red Hat (RHEL) 6.1/5.7, please check this [...]

PHP MySQL Update

The UPDATE statement is used to modify data in a table. Update Data In a Database The UPDATE statement is used to update existing records in a table. Syntax UPDATE table_name SET column1=value, column2=value2,… WHERE some_column=some_value Note:Notice the WHERE clause in the UPDATE syntax. The WHERE clause specifies which record or records that should be [...]

PHP MySQL The Where Clause

The WHERE clause is used to filter records. The WHERE clause The WHERE clause is used to extract only those records that fulfill a specified criterion. Syntax SELECT column_name(s) FROM table_name WHERE column_name operator value To learn more about SQL, please visit our SQL tutorial. To get PHP to execute the statement above we must [...]

PHP MySQL Select

The SELECT statement is used to select data from a database. Select Data From a Database Table The SELECT statement is used to select data from a database. Syntax SELECT column_name(s) FROM table_name To learn more about SQL, please visit our SQL tutorial. To get PHP to execute the statement above we must use the [...]

PHP MySQL Insert Into a Table

The INSERT INTO statement is used to insert new records in a table. Insert Data Into a Database Table The INSERT INTO statement is used to add new records to a database table. Syntax It is possible to write the INSERT INTO statement in two forms. The first form doesn’t specify the column names where [...]

PHP MySQL Create Database and Tables

A database holds one or multiple tables. Create a Database The CREATE DATABASE statement is used to create a database in MySQL. Syntax CREATE DATABASE database_name To learn more about SQL, please visit our SQL tutorial. To get PHP to execute the statement above we must use the mysql_query() function. This function is used to [...]

Connect to a MySQL Database with PHP

The free MySQL database is very often used with PHP. Create a Connection to a MySQL Database Before you can access data in a database, you must create a connection to the database. In PHP, this is done with the mysql_connect() function. Syntax mysql_connect(servername,username,password);   Parameter Description servername Optional. Specifies the server to connect to. [...]