breadcrumb is useful for every site. here I explained code about Create breadcrumb in php – PHP Breadcrumb. This code will be helpful for website developers
Author Archives: Purab
get page name from current url using php
Many people facing this problem for many kind of situations like, get page name from current url using php, Here we given php code for retrieve page name
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 menu bar you can select rectangle, or circle Here I chosen circle. Create a circle …
Continue reading “How to create drag & drop event in flash action script”
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 your tables. You can also use SHOW prior to issuing ALTER TABLE; it’s often easier …
Continue reading “Getting Information about Databases and Tables”
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 with great performance | | HEAP | YES | Hash based, stored in memory, useful …
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 as the base template to make my Windows Service. This piece of code contains all …
AJAX Login Demo
Here’s a demo of a login system built using Ajax. This is a cool implementation which allows a user to login, without having to refresh the page. Here are some advantages of the noted by author of the code:
Usability for Rich Internet Applications
Here’s a good article on design patterns for RIA. “Rich Internet applications (RIAs) can provide opportunities to design much better user experiences. They can be faster, more engaging and much more usable. However, this improvement is not without its downside—RIAs are much more difficult to design than the previous generation of page-based applications. The richer …