Re : objectifcarbone
il faut quand même que je fasse un tableau array dans mon config.xml ou il y a mes params ...
LJ
il faut quand même que je fasse un tableau array dans mon config.xml ou il y a mes params ...
LJ
//récup des valeurs saisies
$co2 = JRequest::getVar('co2', array(0), 'post', 'array');
// calcul du total de CO² émis
$total = 0;
foreach ($co2 as $key => $val) {
$total += $val * $this->params->get( 'profil_' . $key, 0 );
}
<td class='center' width='5%'> <img src='".JURI::base()." /components/com_objectifcarbone/images/help.png' height='20' onClick='javascript:alert(\"".JText::_('PROFIL_HELP')." \");'> </td>
<img src="<?php echo JURI::base() /components/com_objectifcarbone/images/help.png ?>"
onClick="javascript:alert(\'<?php JText::_('PROFIL_HELP') ?> \');">
onClick="javascript:alert(\'<?php JText::_('PROFIL_HELP') ?> \');">
<td class="center" width="5%"> <img src="<?php JURI::base() ?>/components/com_objectifcarbone/images/help.png" height="20" onClick="javascript:alert('<?php echo JText::_('HELP_BOX') ?>' );"> </td>
<input name="dpe[fioul]"
align="right"
type="text"
size="8"
maxlength="10"
value="<?php if (isset($_POST['dpe[fioul]'])){ echo $_POST['dpe[fioul]'];} ?>">
$_POST['dpe[fioul]']
$dpe = $_POST['dpe'];
$fioul = $dpe['fioul'];
Commentaire