Hi there and welcome.
This topoc has actually been covered many times in this forum and is actually quite simple.
Take a look at this thread:
viewtopic.php?f=9&t=58I hope you can follow the steps there.
I would modify just one thing from that thread, in the "select" code we have this:
- Code: Select all
<select name="id_item">
<?php
foreach($items as $id=>$title){
echo '<option id="'.$id.'">'.$title.'</option>';
}
?>
<select>
That would be better being like this:
- Code: Select all
<select name="id_item">
<?php
foreach($items as $id=>$title){
echo '<option id="'.$id.'"'; if(ID_ITEM==$id) echo 'selected="selected"'; echo '>'.$title.'</option>';
}
?>
<select>
That will "remember" the current item in the select list.
Let me know if you need further help

Chris