Hello everybody,

as a newbie to drupal I'd like to integrate a small script of mine into a drupal installation as a custom module.

My very simple script takes some input from user, does some string manipulation to that input and then shows the result into the same page. My script works nice and well as a "standalone" php script but I have no idea how to 'transform' it to a custom drupal module.

So here is my request to help: Can anybody point me to a module (which does anything possible) which takes some input from user via a form and stores this input or does some manipulation to that input? I need such a module as an example...

Many thanks in advance,
Gigi

Comments

fax8’s picture

Have a look at the feedback module (http://drupal.org/project/feedback)
which does what you asked

Also have a look at the site http://www.drupaldocs.org
in particular hooks are really important to understand:
http://drupaldocs.org/api/4.6/group/hooks

Also usefuls the various example modules:
http://drupaldocs.org/api/4.6

Hope this helps

Fabio

------------
www.varesano.net - Fabio Varesano Personal Homepage

DVV’s picture

exactly what I looked for.

Thanks a lot!