January24
In views I wanted to expose a computed field but instead of textbox I wanted it to be a select ...
January23
I was addresses module but using the values of country and city in views or search or any custom module ...
December19
awesome tutorial on how to theme drupal6 forms with tables
http://www.akchauhan.com/create-drupal-form-using-theme_table-like-module-list-form/
and to learn about forms API in general visit
http://drupal.org/node/262422
I ...
August15
There are two related content types and I wanted to find the total of one content type entries applied against ...
August4
To theme drupal forms using cck fields do the following:
Insert theme hook function in the template.php file: (dmcdubai is my ...
August1
check out
http://drupal.org/node/601646 the best summarized description of how to theme drupal forms.
and also go through
this slide ...
July19
Learn how to add, delete and edits fields to any form in Drupal. Like the user registration form, contact form ...
June14
How to use drupal_mail while sending in drupal custom modules.
Here's a code snippet that shows you how to use the ...
June7
I wanted redirect the webpage to the taxonomy term page after a user submits a specific content type.
1 - I ...
June1
How to extract and manipulated data from the database and then save it in the cck computer field.
computed code:
$nid=$node->nid;
...