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
https://forums.phpfreaks.com/topic/221244-extension/
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
https://forums.phpfreaks.com/topic/221244-extension/#findComment-1145493
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.