Jump to content

extension


juniorek9

Recommended Posts

Hi all. i have problems with making a questionnaire. i have done a single questions but i have no idea how to add them al ltogether so they work as switch function.

i`ve attached one of the questions. could anyone suggest how i make answers into a list rather than just a line of options?

 

[attachment deleted by admin]

Link to comment
Share on other sites

Do you mean that you need to print each answer in a line by itself?

 

If yes, then you can do as shown below

 

<h1>Would You rather?</h1>

<?php

$transport = array('r' => 'Cruise the street in your hot ride',

                'a' => 'Join the army',

                'p' => 'go to a science convention',

'h' => 'stay home and work on the computer');

foreach ($transport as $key => $transport) {

  echo  "<input type='radio' name='transport' value='$key'/> $transport <br/>" ;

}

 

?>

<input type="submit" value="go">

</html>

 

 

just changed the \n to <br/> in this line echo  "<input type='radio' name='transport' value='$key'/> $transport

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.