drupal

Drupal implementation

I am using Drupal 5.1 to construct this application.


Drupal Modules:

How drupal works

  • template-PHPtemplate
  • CSS
  • view-view template
  • node-node view (template)
  • cck-view

Drupal

Drupal is an open source content management platform. Equipped with a powerful blend of features, Drupal can support a variety of websites ranging from personal weblogs to large community-driven websites.

Comparison Impplementation between Drupal and Ruby on Rails

Overview This application will be used to demostrate the developement process when based on two different technology. One of the technologies is Drupal, another is Ruby on Rails. Application Rqirement Here is the requirement of the application

A page to get sql result from db

<?php $sql = "SELECT sum(has_title) AS num_students FROM node_type"; $result = db_fetch_object(db_query($sql)); $num_students = $result->num_students; ?> There are <?=$num_students;?> students involved.
Syndicate content