Posts

Showing posts from May, 2011

how to give "no link" or separator to menu in drupal

Special menu items is a Drupal module that provides placeholder and separator menu items. A placeholder is a menu item which is not a link. It is useful with dynamic drop down menus where we want to have a parent menu item which is not linking to a page but just acting as a parent grouping some menu items below it. A separator menu item is something like "-------" which is not linking anywhere but merely a mean to structure menus and "separate" menu items visually.

how to retrieve data stored in the database in different language and print in php, mysql or drupal

While retrieving the data stored in the  database in different languages, it will be retrieved as unknown format(???).   To avoid this problem and to retrieving the original values please use the below given code before your select query  mysql_query("SET NAMES utf8"); mysql_query("SET CHARACTER SET utf8");