May 12, 2011

How to add a navigation menu

A simple jquery based navigation menu which is very easy to configure and customize can be found here.

May 11, 2011

Jquery Slider

A cool and easy to integrate Jquery Slider with few options can be found here
http://pikachoose.com/

Apr 28, 2011

How to split data in php

You can use the explode function to split data in PHP.

$url = "http://www.domain.com/images.jpg";

$data = explode("/", $url);

$var = $data[count($data) - 1];

Apr 12, 2011

Adding a dynamic navigation bar

To add a dynamic navigation bar you can use following simple code for reference.
$navitems = array('filename1.php' => 'Page Name 1', 'filename2.php' => 'Page Name 2');

echo "<ul>\n";

foreach ($navitems AS $k => $v) { 
 echo '<li><a href="' . $k . '" title="' . $v . '">' . $v . "</a></li>\n";
}

echo "</ul>\n";

Apr 5, 2011

Adding an editable grid

When you are developing web applications there are situations in which you would like to add an editable grid to the application. Here is the one that can be used for free under GPL.
http://www.webismymind.be/editablegrid/