Sujet fermé
Note de ce sujet :
  • Moyenne : 0 (0 vote(s))
  • 1
  • 2
  • 3
  • 4
  • 5

[Résolu]UDT : Ajax + requête SQL
#7

Donc maintenant j'ai :

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 :/ ...

Cool
Sujet fermé


Messages dans ce sujet

Atteindre :


Utilisateur(s) parcourant ce sujet : 1 visiteur(s)