Firefox Campus Edition

Mozilla released recently a new version bundle of firefox browser: Firefox Campus Edition. Campus edition is not a new version of Firefox. It is just the common firefox browser with some add-ons (extensions) for better music management and social networking. The add-ons that come pre-installed with Campus Edition are: Zotero, FoxyTunes and StumbleUpon. Zotero helps … Continue reading Firefox Campus Edition

Google prepares Gphone!

According to Wall Street Sun, Google is ready to launch Gphone during 2008. Google has contacted many communication providers. Gphone will feature Web Search, Gmail and various Google services (probably a new browser developed by Google). Google has already constructed some prototypes and presented them to companies like T-Mobile and Verizon Wireless. Google will earn … Continue reading Google prepares Gphone!

Scratch: Programming learning for young children!

Scratch is a simple, visual programming language created by the MIT University and focuses on young children who are now entering the world of coding. Scratch works with drag 'n' drop and is very easy to learn. It gives entry capabilities for animation and simple program creation. It is available for Windows, Mac and Linux … Continue reading Scratch: Programming learning for young children!

Create a simple PHP script and MySQL database for user authentication.

In this tutorial, we will show you how to create a simple script using PHP for user authentication. User data are stored in a MySQL database. So, lets create the database first and one authenticated user called "test": create database auth; use auth; create table authorised_users ( name varchar(20), password varchar(40), primary key (name) ); … Continue reading Create a simple PHP script and MySQL database for user authentication.