By Niraj on October 4, 2009
The simple social bookmarking module for drupal allows you to add social bookmarking buttons for each pages in the configured blocks.
How to install?.
Download drupal social bookmarking module
Install the ’simple_bookmark’ module and enable it.
Go to blocks configure page and configure it, where you want to place the social bookmarking buttons, footer will be the good place.
Give [...]
Posted in AJAX, JavaScript, Php n MySQL | Tagged Drupal as Social Bookmark, Drupal Developer india, Drupal Theme Expert india
By Niraj on October 4, 2009
Here are some useful tips to maintain the mysql and SQL coding standard.
Always write queries in Capital Letters.
Quote around table names and column names by using back tick (`) operator.
Always use table names and column names in small letters.
Use underscore (_) for table names and column names.
Always fetch required fields only, do not select (*) [...]
Posted in AJAX, JavaScript, Php n MySQL | Tagged Database administrator india, MySql developer, MySql expert india
By Niraj on October 4, 2009
Here are a huge list of open source php based content management systems.
XOOPS
Mambo
Joomla
Drupal
Yupi CMS
Wolf CMS
Website Baker
Typolight
Triton
plum cms
pligg cms
phpwcms
php-nuke
php-fusion
php micro CMS
OpenRat CMS
Limny
Limeware
Lemon CMS
Jaws
html-edit
Guppy
eliteCMS
CMS Made Simple
Posted in AJAX, JavaScript, Php n MySQL | Tagged Best CMS for my website, CMS and PHP developer india, CMS programmer india Wordpress developer, Wordpress as CMS
By Niraj on October 4, 2009
Here are some of popular open source php based shopping (e-commerce) cart scripts.
osCommerce
Zen Cart
Magento
Ubercart with Drupal
Opencart
Posted in AJAX, JavaScript, Php n MySQL | Tagged best shopping carts, How to shopping cart, Shopping cart developer, Shopping cart india, top shopping carts
By Niraj on October 4, 2009
What is the difference between PHP running as a ‘module’ and as a ‘CGI’?
While php running as a module, the php settings from php.ini file are loaded into memory, and it will be available for each page from memory only.
While running as a CGI mode, the web server will load the php.ini file each time. [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
The much awaiting php version PHP 5.3 has been released. The important features of PHP 5.3 version are:
‘goto’ lable for jumping
Namespaces supports for PHP Classes.
Closures or Anonymous function same like javascript/jQuery anonymous functions.
garbage collection support
And much more….
You can see the php 5. 3 release version here.
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
By default mysql searches are case insensitive, that is from the following table:
cms
description
rating
Joomla
Joomla is an open source cms with nice design
3
Drupal
Drupal is an open source CMS framework based on MVC architecture
4
This query:
SELECT * FROM `table` WHERE `cms` LIKE ‘%JOOMLA%’
will fetch the first row of the records. If we want to case sensitive select, we can [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
Here are few JavaScript interview questions and answers:
How do you delete the last element of an array in JavaScript?
array_object_variable.pop();
The pop() method in JavaScript will delete the last element of the array. Whereas the push() method will add a new element at the start of the array.
How do you get the random number between 0 and [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on October 4, 2009
MySQL has the following storage engines or table types:
MyISAM
InnoDB
HEAP
MERGE
CSV
BLACKHOL
Out of these all mysql storage engines, two engines are most important & these are used by developers frequently as well.
The first one is InnoDB mysql engine; it supports transaction and table locking. And another one is ‘MyISAM’, it supports full text search support using this we [...]
Posted in AJAX, JavaScript, Php n MySQL
By Niraj on November 15, 2008
by Chris Coyier
Beautiful HTML is the foundation of a beautiful website. When I teach people about CSS, I always begin by telling them that good CSS can only exist with equally good HTML markup. A house is only as strong as its foundation, right? The advantages of clean, semantic HTML are many, yet so many [...]
Posted in AJAX, C# and ASP.Net, JavaScript, MS SQL server 2000 / 2005, Php n MySQL, VB.Net, Web Designing
Recent Comments