I want visitors to submit articles on my website.
But I want all of the articles to have the same format.
That's why I want my visitors to fill in a questionform. The answers will get a specific spot in the article.
For example:
Question 1: title?
Question 2: fulltext?
Question 3: what transport did you use?
So the output should be like an email template:
<p>Hi,</p>
<p>New user has submitted a new Content item, please review it!</p>
<p><strong>Title:</strong>{title}</p>
<p><strong>Body:</strong> {fulltext}</p>
<p><strong>TRansport:</strong> {transport}</p>
The question is: how can I achieve this.
How can I replace this part of submitcontent by a form?
<?php
$editor =& JFactory::getEditor();
echo $editor->display( 'fulltext', '' , '80%', '350', '55', '20', false ) ;
?>
But I want all of the articles to have the same format.
That's why I want my visitors to fill in a questionform. The answers will get a specific spot in the article.
For example:
Question 1: title?
Question 2: fulltext?
Question 3: what transport did you use?
So the output should be like an email template:
<p>Hi,</p>
<p>New user has submitted a new Content item, please review it!</p>
<p><strong>Title:</strong>{title}</p>
<p><strong>Body:</strong> {fulltext}</p>
<p><strong>TRansport:</strong> {transport}</p>
The question is: how can I achieve this.
How can I replace this part of submitcontent by a form?
<?php
$editor =& JFactory::getEditor();
echo $editor->display( 'fulltext', '' , '80%', '350', '55', '20', false ) ;
?>