Récupérer le titre de l'article depuis un formulaire RSform

Créer un champ caché (peut-être après le bouton submit ? peu importe !)
Insérer le code ci-après dedans (tel quel)

 

//<code>
$input = JFactory::getApplication()->input;
$id = $input->getInt('id'); //get the article ID
$article = JTable::getInstance('content');
$article->load($id);

return $article->get('title'); // display the article title
//</code>