Lukiluko Posted October 16, 2012 Report Share Posted October 16, 2012 Hallo an das Forum, ich bin relativ neu in Sachen SMARTY... also meine Frage an Euch ist: Ich habe via html_options eine Auswahlliste erstellt, die auch befüllt und angezeigt wird. Nun möchte ich aber dass die Auswahl z.B. text1 an eine weitere Seite gesendet wird und dort auch Angezeigt. (nur die Auswahl) Also im tpl habe ich folgendes: <form action="action.php" method="post"> <select name="customer_id"> {html_options values=$cust_ids output=$cust_names selected=$customer_id} </select> <input type="submit" value="senden.."> </form> Code: //Das steht in meiner PHP {php} include_once('Smarty.class.php'); $smarty = new Smarty; $smarty->assign('cust_ids', array(1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010)); $smarty->assign('cust_names', array( 'Bitte wählen..', '+/- 0.00 Dpt.', '+ 0.25 Dpt.', '+ 0.50 Dpt.', '+ 0.75 Dpt.', '+ 1.00 Dpt.', '+ 1.25 Dpt.', '+ 1.50 Dpt.', '+ 1.75 Dpt.', '+ 2.00 Dpt.', '+ 2.25 Dpt.')); $smarty->assign('customer_id', 1001); $smarty->display('test.tpl'); {/php} Nun mein Problem: Wie rufe ich in meiner action.php die Ausgewählte option auf??? habe schon mit .$_POST['cust_ids'] ."; versucht aber ohne erfolg. Ich hoffe auf Eure Hilfe. Danke Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.