up vote 0 down vote favorite
2
share [g+] share [fb]

I want to create my own form that are submitted and values of that form will be stored in joomla database. How can i used the Joomla connection code to interacte with the joomla database.

link|improve this question
feedback

5 Answers

If you just want to get your work done, there are some components already avaiable in Joomla Extension's website to your form's needs. CkForms is a good one, you can create simple forms with it that are automatically saved in the database (supports upload of files too).

If you want to learn how to write extensions in Joomla, you should read Joomla Official Documentation website.

Extensions in Joomla are divided in "Components", "Modules" and "Plugins". More informations about these differences can be found here and here.

What you're trying to achieve sounds a "component" to me. Downloading the CkForms and reading it's source code should get you started to Joomla's way of writing components.

EDIT: Joomla has a huge API with a lot of features. It has a database module of it's own, with insert methods and such. Reading Joomla's API website before implementing your component it's a good idea to avoid "reinventing the wheel" and it's a good practice since those methods are extensively tested by all Joomla users.

link|improve this answer
feedback

Just take a look at http://www.Joomla-Forms.com :-)

link|improve this answer
feedback

Take a look at the Chronoforms extension - does more than you want.

link|improve this answer
feedback

Hey, It is good for the beginner who wants to start with joomla, but as Flavio said it is not useful with latest joomla versions. You can visit Include Any Module Within Content in Joomla 1.5!: http://cntt247.com/page2.php?q=include_any_module_wmithin_content_in_joomla_1.5 for all informations you need.

link|improve this answer
feedback

You have two options:

  • Use an already built custom form extension
  • Create your own custom form extension (or outsource it)

Now if you only want to modify the user registration form, then you can do some PHP customization to accomplish your goal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown