A partir de données commes celles là : 

$this->AUTOQUESTIONNAIRE['B1'] 	= 'Confidentialité';
$this->AUTOQUESTIONNAIRE['B2'] 	= 'Générales';
$this->AUTOQUESTIONNAIRE['B3'] 	= 'Générales';
$this->AUTOQUESTIONNAIRE['B6'] 	= 'Générales';
$this->AUTOQUESTIONNAIRE['B7'] 	= 'Générales';
$this->AUTOQUESTIONNAIRE['B77'] = 'Morphologie';
$this->AUTOQUESTIONNAIRE['B78'] = 'Morphologie';
$this->AUTOQUESTIONNAIRE['B79'] = 'Morphologie';
$this->AUTOQUESTIONNAIRE['B82'] = 'Habitus';
$this->AUTOQUESTIONNAIRE['B86'] = 'Habitus';
$this->AUTOQUESTIONNAIRE['B89'] = 'Habitus';


$this->AUTOQUESTIONNAIRE['D1'] 	= 'Confidentialité';
$this->AUTOQUESTIONNAIRE['D2'] 	= 'Référence'					 ;
$this->AUTOQUESTIONNAIRE['D3'] 	= 'Vous étes (genre)'		     ;
$this->AUTOQUESTIONNAIRE['D6'] 	= 'Quel est votre age'		 ;
$this->AUTOQUESTIONNAIRE['D7'] 	= 'Quelle est votre type' 	 ;
$this->AUTOQUESTIONNAIRE['D77'] = 'Quelle est votre taille (cm)'			 ;
$this->AUTOQUESTIONNAIRE['D78'] = 'Quel est votre poids (kg)'              ;
$this->AUTOQUESTIONNAIRE['D79'] = 'Quel est votre tour de taille (cm)'     ;
$this->AUTOQUESTIONNAIRE['D82'] = 'Êtes vous fumeur de cigarettes, de cigares ou de la pipe?'   ;
$this->AUTOQUESTIONNAIRE['D86'] = 'Consommez vous régulièrement plus d\'un 1/2 de vin ou plus de deux bières par jour ?' 															;
$this->AUTOQUESTIONNAIRE['D89'] = 'Pratiquez vous une activité sportive supérieure à 30minutes plus de 2 fois par semaine ou marchez vous en moyenne plus de 8000 pas par jour.'	;

$this->AUTOQUESTIONNAIRE['F1'] = 1;
$this->AUTOQUESTIONNAIRE['F2'] = 'TRTEZF';
$this->AUTOQUESTIONNAIRE['F3'] = 'H';
$this->AUTOQUESTIONNAIRE['F6'] = 'H';
$this->AUTOQUESTIONNAIRE['F7'] = 'E';
$this->AUTOQUESTIONNAIRE['F77'] = 1.86;
$this->AUTOQUESTIONNAIRE['F78'] = 89.5;
$this->AUTOQUESTIONNAIRE['F79'] = 95;
$this->AUTOQUESTIONNAIRE['F82']  = 3;
$this->AUTOQUESTIONNAIRE['F86']  = 1;
$this->AUTOQUESTIONNAIRE['F89']  = 0;

Ecris moi du code PHP pour Fairet un écho d'un PHP comme cela que je pourrai copier dans mon scrimpt PHP de param :
array(
			 array( 'collapsed' => false, 'name' => 'fConf', 'type' 	=> 'fieldset'	,'title' => 'Confidentialité' ,'column' => 1	,'items' 	=> array(
				 array( 'name' => 'F1'	,'type' 	=> 'checkbox' ,'label' => 'Confidentialité'				,'required' => true)
			))
			,array( 'collapsed' => true, 'name' => 'fGene', 'type' 	=> 'fieldset'	,'title' => 'Générales' ,'column' => 2	,'items' 	=> array(
				 array( 'name' => 'F2'	,'type' 	=> 'string' ,'label' => 'Référence'					,'required' => true)
				,array( 'name' => 'F3'	,'type' 	=> 'string' ,'label' => 'Vous étes (genre)'		    ,'required' => true)
				,array( 'name' => 'F6'	,'type' 	=> 'int'	,'label' => 'Quel est votre age'		,'required' => true)
				,array( 'name' => 'F7'	,'type' 	=> 'combo' 	,'label' => 'Quelle est votre type' 	,'required' => true)
			))
			,array( 'collapsed' => true, 'name' => 'fMorp', 'type' 	=> 'fieldset'	,'title' => 'Morphologie','column' => 2	,'items' 	=> array(
				 array( 'name' => 'F77'	,'type' 	=> 'int' 	,'label' => 'Quelle est votre taille (cm)'			,'required' => true)
				,array( 'name' => 'F78'	,'type' 	=> 'float' 	,'label' => 'Quel est votre poids (kg)'             ,'required' => true)
				,array( 'name' => 'F79'	,'type' 	=> 'int' 	,'label' => 'Quel est votre tour de taille (cm)'    ,'required' => true)
			))
			,array( 'collapsed' => true, 'name' => 'fHabi', 'type' 	=> 'fieldset'	,'title' => 'Habitus'	,'items' 	=> array(
				 array( 'name' => 'F82'	,'type' 	=> 'combo'	,'label' => 'Êtes vous fumeur de cigarettes, de cigares ou de la pipe?'    )
				,array( 'name' => 'F86'	,'type' 	=> 'bool' 	,'label' => 'Consommez vous régulièrement plus d\'un 1/2 de vin ou plus de deux bières par jour ?' 																													)
				,array( 'name' => 'F89'	,'type' 	=> 'bool' 	,'label' => 'Pratiquez vous une activité sportive supérieure à 30minutes plus de 2 fois par semaine ou marchez vous en moyenne plus de 8000 pas par jour.'															)
);		
	 