Top Questions

What is the difference between session and cookie ?
How can we call flash banner in dreamweaver..
Give the ans.
SQL means "structured query language" which is the syntax of commands you send to database. MYSQL is the database program which accepts the those commands and gives out the data.
I have created a php site in dreamweaver but i have not stored the files in www directory of wamp. now i want to move the files to www directory without losing the links that i've created... how is it possible??
Can any one tell me how can i get DPI of uploaded image. Thanx
Hi evryone, how do i call stored procedure from zend framework using oracle database and how to echo the data. muzeeb
When outputting something with PHP, we use print or echo functions. what exactly is the difference between those functions?
Please send your resumes for the Drupal Joomla Opening - Reputed Company - Bangalore Requirement: 2 - 3 years experience in Joomla / Drupal & PHP Contact on bshibin@gmail.com
Super key is the set of attributes in a table that can uniquely identifies a database tuple(row or record). Candidate key is the minimal set of super key that can uniquely identifies a database record. Primary key is one of the candidate keys. you can select any candidate k
Please use the following snippet for the custom redirect. function module_form_alter(&$form,$form_state,$form_id){ if (isset($form['#node']) && $form['#node']->type .'_node_form' == $form_id) { $form['buttons']['submit']['#submit'][] = 'module_redirect_handler'; }
/* *Enabling HTML option for Drupal menus */ function theme_menu_item_link($link) { $link['localized_options']['html'] = true; return l($link['title'], $link['href'], $link['localized_options']); }
Please try use _gaq.push([‘_trackPageLoadTime’]); instead. It will work !!!
It might be because of Jscrollpane.js issue. The Quick solution to solve this issue is to edit the Jscroolpane.js. Go to particular line number ( Mostly:341 ) and change to var dragOffset = $drag.offset(false); currentOffset = { top: dragOffset.top, left:dragOffse
In Jquery we can follow the following to iterate the contents.
If you are using any "#" in the URLs it should be in the encoded form. Its because of this is used in URLs to mention where the fragment indicators ( eg:bookmarks or anchors in HTML ) begins in URLs.
Before implementing any user defined partitioning in MySQL we need to make sure whether your mysql server supports partitioning. Finding out the same in your server will be simple. Type SHOW VARIABLES LIKE '%partition%'; on the command prompt as shown below. mysql> SHOW