Smarty Forum Index Smarty
WARNING: All discussion is moving to https://reddit.com/r/smarty, please go there! This forum will be closing soon.

I want to display a multiple choice questionnaire

 
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General
View previous topic :: View next topic  
Author Message
ssur.linux@gmail.com
Smarty n00b


Joined: 23 Jul 2015
Posts: 2

PostPosted: Fri Jul 24, 2015 8:59 am    Post subject: I want to display a multiple choice questionnaire Reply with quote

The data is like this :-

<?php

$questions = Array ( [1] => Array (
"q_id" => 1,
"q_desc" => 'Question-1?',
"q_mcq_type" => 'radio',
"answers" => Array (
[0] => 'choice-1',
[1] => 'choice-2'
)
),
[2] => Array (
"q_id" => 2,
"q_desc" => 'Question-2?',
"q_mcq_type" => 'checkbox',
"answers" => Array (
[0] => 'option-1',
[1] => 'option-2'
)
)
);


<!--Initiation of Smarty Class & Assign to a Smarty Variable "questions"-->

?>

I want to show like :-

1. Question-1?
choice-1
choice-2
2. Question-2?
option-1
option-2

My question is what would be the tpl file?

I tried the following (It is incomplete)

<html>

<head>
<title> Multiple Choice Questions </title>
</head>

<body>

{foreach item="question" from=$questions}
<div>
{$question['q_id']}.{$question['q_desc']}
<div><!--How to Show $question['answers'] --></div>
</div>
{/foreach}

</body>

</html>

Thanks in advance.
Back to top
View user's profile Send private message
AnrDaemon
Administrator


Joined: 03 Dec 2012
Posts: 1785

PostPosted: Fri Jul 24, 2015 9:56 am    Post subject: Reply with quote

http://www.smarty.net/docs/en/
Back to top
View user's profile Send private message
ssur.linux@gmail.com
Smarty n00b


Joined: 23 Jul 2015
Posts: 2

PostPosted: Fri Jul 24, 2015 11:28 am    Post subject: Thank you Reply with quote

I got it [http://www.smarty.net/docs/en/language.function.foreach.tpl]

Refer example 7.32
Back to top
View user's profile Send private message
Display posts from previous:   
This forum is locked: you cannot post, reply to, or edit topics.   This topic is locked: you cannot edit posts or make replies.    Smarty Forum Index -> General All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group
Protected by Anti-Spam ACP