According to the official sources now the time has come for Drupal 6 to take rest and it will be on February 24th 2016 when it will reach the end.
seen from China
seen from China
seen from Malaysia

seen from United States

seen from T1
seen from China

seen from United Kingdom

seen from France
seen from Germany
seen from China
seen from China

seen from United States
seen from Hong Kong SAR China
seen from Belarus
seen from United States

seen from Russia
seen from United States

seen from United States

seen from United States
seen from Türkiye
According to the official sources now the time has come for Drupal 6 to take rest and it will be on February 24th 2016 when it will reach the end.

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Free Drupal 6 Theme
http://dinvr.com/grp/drupal-6/13228
Webs Expert
on http://websexpert.net/drupal/3118.html
How to create custom module in drupal 6
This is for custom module in drupal 6 .You can create a simple module by following few steps: Step 1) Create a folder in sites/all/modules/custom with name you want to give to your module e.g. myfirstmodule. Step 2) Create a file named myfirstmodule.info in your myfirstmodule folder . name...
Webs Expert
on http://websexpert.net/drupal/how-to-theme-user-login-page-in-drupal-6.html
How to theme user login page in drupal 6
To theme login page in Drupal 6 is not a difficult you just need to follow these easy steps and you are ready to go. Step 1) You need to go to your theme folder and open template.php Step 2) Now find function yourthemename_theme if it not exists then create a new _theme function using...
Webs Expert
on http://websexpert.net/drupal/how-to-insert-update-delete-in-drupal-6.html
How to Insert, update, delete in drupal 6
For inserting record into database in drupal 6 we have to use db_query . For example : db_query('INSERT INTO {mytable} VALUES(%d,%d)',$id,$uid); Here two values will be inserted in to mytable Which you pass using $id and $uid variable you can also use other method to insert data $arg_new =...

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Webs Expert
on http://websexpert.net/drupal/fetch-data-from-database-in-drupal-6.html
How fetch data from database in Drupal 6
For fetching data from database in drupal 6 we use db_query in place of mysql_query we used in PHP. To fetch one record with where clause we can use this simple query : $role_id = db_result(db_query("SELECT n.rid FROM {users_roles} n WHERE n.uid =%d ", $user->uid)); You can see in this...
Render a block programmatically
Drupal 6:
<?php
$block = module_invoke('MODULE_NAME', 'block', 'view', MODULE_DELTA);
print $block['content'];
?>
Drupal 7:
this will print with title
<?php
$block = block_load('locale', 'language');
$output = drupal_render(_block_get_renderable_array(_block_render_blocks(array($block))));
print $output;
?>
this will print without title
<?php
$block2 = module_invoke('locale', 'block_view', 'language');
print render($block2['content']);
?>
Ref:
http://api.drupal.org/api/drupal/includes!module.inc/function/module_invoke/7
Script Updates :
1) Drupal -> 7.14, 2) Drupal 6 -> 6.26, 3) MediaWiki -> 1.19.0, 4) MODx -> 2.2.2-pl, 5) Symfony2 -> 2.0.13, 6) SugarCRM -> 6.4.4