|
Posted by ELINTPimp on 08/10/07 13:53
On Aug 10, 8:03 am, Daniel <d_pinea...@hotmail.com> wrote:
> Hello,
>
> Could someone explain/demonstrate how I can create a 'continuous
> form' (similar to access) but in a webpage using php. What I am
> trying to do is have and entry input, if the user enters info then
> make another input available and so on. This way they can enter as
> many items as they need. Then loop through each of their entry and
> perform my action. If there is a proper web term for what I am trying
> to accomplish could you please let me know so I start using the proper
> terminology.
>
> Thank you for the help.
>
> Daniel
It seems to me is that you want a simple updateable view of a database
table(s). (P.S. In database terminology, at least, it would be called
an updateable view).
Depending on your situation, this could be something very simple and
could/should(?) be done with a simple Active Record pattern...or could
get relatively complicated since there are so many variables. On the
UI...do you want to have a page refresh between new records or do you
want to leverage AJAX?
Check out some more information on the Active Record pattern (http://
en.wikipedia.org/wiki/Active_record_pattern) and possibly something on
AJAX if you're so inclined (not a necessity, of course).
[Back to original message]
|