What are breadcrumbs? Well quite simply, in web page terms this refers to a list of links (usually at the top) that appear on a web page to tell the user where they are in the structure of the website … Continue reading
Monthly Archives: February 2008
Retrieve page name in php
Many people facing this problem for many kind of situations like … create dynamic javascript or css menu.., navigation, hit counter… for page.. you can use set variable names for page. second good way is use this function for print … Continue reading
How to create drag & drop event in flash action script
In this tutorial I am going to show you how to easily create or achieve the drag & drop event using flash action script Step 1 Open flash then select file >> new >> flash document Now in left side … Continue reading
free software- open source technology
Advances in technology have revolutionized the way people live, learn and work, but these benefits have not spread around the world evenly. A digital divide exists between communities in their access to computers, the Internet, and other technologies. The United … Continue reading
Getting Information about Databases and Tables
MySQL provides a SHOW statement that has several variant forms that display information about databases and the tables in them. SHOW is helpful for keeping track of the contents of your databases and for reminding yourself about the structure of … Continue reading
Mysql table types
As of MySQL 4.1, the list of table types is available directly through the SHOW TABLE TYPES statement: mysql> SHOW TABLE TYPES; +——–+———+———————————————————–+ | Type | Support | Comment | +——–+———+———————————————————–+ | MyISAM | DEFAULT | Default type from 3.23 … Continue reading
Basic tutorials of C programming language
Introduction C is a basic language to learn the programming. Actually what is meaning of programming. Programming means input of row material, which gives us the magical statue of output on which we can ride a long journey of programming. … Continue reading
Creating a Windows service
For this I used Daniel Berger’s win32-service package. This is a great package that does literally everything for you to enable you to create a nice Windows service. Just install the gem like this: gem install win32-service I used examples/daemon_test.rb … Continue reading