Trace:
Differences ¶
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:tutorials:main:news-form [2007/12/18 09:46] – laurent | en:tutorials:main:news-form [2008/11/19 21:43] (current) – laurent | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | A form system, jForms, is available in Jelix, but we will see it in a next chapter. | ||
+ | |||
+ | For the moment, we're going to see how to deal with forms in a " | ||
+ | |||
+ | |||
+ | ===== The template and the urls ===== | ||
+ | |||
+ | Initially, we will make the template, very simplified, that we store in the newsform file : | ||
+ | |||
+ | <code xml> | ||
+ | < | ||
+ | |||
+ | <form action=" | ||
+ | {formurlparam ' | ||
+ | < | ||
+ | <tr> | ||
+ | < | ||
+ | < | ||
+ | </tr> | ||
+ | <tr> | ||
+ | < | ||
+ | < | ||
+ | </tr> | ||
+ | <tr> | ||
+ | < | ||
+ | < | ||
+ | </tr> | ||
+ | </ | ||
+ | < | ||
+ | <a href=" | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | Very classical, put aside the template tags {formurl}, {formurlparam} and {jurl}. | ||
+ | |||
+ | In Jelix, you will avoid putting urls directly in the templates or the actions, for ease of maintenance and evolution reasons. The URL system of Jelix enables you to centralize all the urls in the jelix config or a urls.xml file (all depends on the URL engine used). The jUrl object and the tag {jurl} enable you to obtain a URL by giving only the name of the action and eventually the parameters. | ||
+ | |||
+ | We could have used the tag {jurl} also in < | ||
+ | |||
+ | Here then, we state that the form will be submitted to URL of the default: | ||
+ | |||
+ | Note: by default, {jurl}, {formurl} and {formurlparam} correctly escapes the reserved characters in HTML/XML. | ||
+ | |||
+ | |||
+ | |||
+ | ===== Displaying the form ===== | ||
+ | |||
+ | We will create a first action : " | ||
+ | |||
+ | <code php> | ||
+ | function createform(){ | ||
+ | $rep = $this-> | ||
+ | $rep-> | ||
+ | $rep-> | ||
+ | return $rep; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | To reach this page, we will add a link in bottom in the template listenews.tpl | ||
+ | |||
+ | < | ||
+ | < | ||
+ | </ | ||
+ | |||
+ | Here, one more time, we use the {jurl} tag. | ||
+ | |||
+ | ===== Saving the data ===== | ||
+ | |||
+ | As we stated in the form, we now have to create a " | ||
+ | |||
+ | Initially, we retrieve a record, that is filled with the data sent by the form. The URL parameters ($_GET) or posted ($_POST), are accessible via the param() method of the controllers. | ||
+ | |||
+ | <code php> | ||
+ | $news = jDao:: | ||
+ | $news-> | ||
+ | $news-> | ||
+ | $news-> | ||
+ | </ | ||
+ | |||
+ | We then retrieve a DAO factory to save the record. | ||
+ | |||
+ | <code php> | ||
+ | $dao = jDao:: | ||
+ | $dao-> | ||
+ | </ | ||
+ | |||
+ | In the end, we will redirect to the list of news. | ||
+ | <code php> | ||
+ | $rep = $this-> | ||
+ | $rep-> | ||
+ | return $rep; | ||
+ | </ | ||
+ | |||
+ | Which gives finally : | ||
+ | |||
+ | <code php> | ||
+ | function createsave(){ | ||
+ | $news = jDao:: | ||
+ | $news-> | ||
+ | $news-> | ||
+ | $news-> | ||
+ | |||
+ | $dao = jDao:: | ||
+ | $dao-> | ||
+ | |||
+ | $rep = $this-> | ||
+ | $rep-> | ||
+ | return $rep; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | You can now display the list of news one more time and reach the form. | ||
+ | |||