Friday, October 16, 2009

Remove empty elements from array

To remove empty elements from array

foreach($array as $key => $value) {
if($value == "") {
unset($array[$key]);
}
}
$new_array = array_values($array);

Thanks
Jawed

Friday, October 9, 2009

8 Ajax Lightbox Scripts

Hi,

At the blow link you can find 8 Ajax Light Box scripts....... ENJOY

http://webtecker.com/2008/02/26/8-ajax-lightbox-scripts/


Thanks
Jawed

Light box that also show google map in it

The below url deals with a light box that opens a google map in it.

http://www.bitethebullet.co.uk/ModalGoogleMaps/tabid/88/Default.aspx

Thanks
Jawed