New to php web programming. I am writing a web based retail system. Consider using 2 horizontal frames. The upper frame is to enter one sales transaction at a time. Confirm with OK button. The lower frame is to display all transactions in a table. For example: customer buys a T-shirt (transaction 1), 3 caps (transaction 2) and 10 pairs of socks (transaction 3). The salesperson after hitting OK for transaction 1, the lower frame should display this transaction. After the last transaction is OK, the lower frame should show 3 transactions. Is it possible? How do the 2 frames (upper and lower) interact? Thanks for your help in advanced.
using the target attribute in your form you can target specific frames, for example <form method=post target=bottom> (and give the lower frame the name 'bottom')