22/06/2012, 10:22:30
Donc maintenant j'ai :
Mais quand je clique sur envoyer, la nouvelle page ne se charge pas :/ ...
Code :
[== PHP ==]
$HTML = <<<EOT
<form name="frm" action="{literal}{root_url}{/literal}/index.php?page=archive2&showtemplate=false&q=$str">
EOT;
echo '<select size=1 name="client">';
echo '<option value="-1">Choisir un client<option>';
$liste_client = $bdd->query('SELECT DISTINCT nom_entreprise FROM espacewcln ORDER BY nom_entreprise');
while ($resultat = $liste_client->fetch()) {
echo '<option value="'.$resultat['id_client'].'">'.$resultat['nom_entreprise'];
echo '</option>'."\n";
}
echo '</select>';
echo '<input type=submit value="Envoyer"/>';
echo '</form>';
//Compilation Smarty
$smarty->_compile_source('temporary template', $HTML, $_compiled );
@ob_start();
$smarty->_eval('?>' . $_compiled);
$_contents = @ob_get_contents();
@ob_end_clean();
Mais quand je clique sur envoyer, la nouvelle page ne se charge pas :/ ...