It's always possible :-)
Depending on how your data are structured
in your database.
Admit the following :
id | name | price
1 | Apple | £2
2 | Orange | £1
your SELECT tag :
<SELECT NAME="ArticleID">
<OPTION VALUE="1"> Apple £2
<OPTION VALUE="2"> Orange £1
</SELECT>
so the data you will get back for this form
is the Article ID ; you do a SELECT SQL query :
SELECT name,price FROM mytable
WHERE id='$Article_ID';
You have now your name & price again
available to print in the next screen