faiz2000 wrote:
> O.K.
>
> I have to copy values from table to other table whenever
the user he
> registers.
>
> Note:
> There are three tables:
> First: standard values.
> Second: registration information with user ID
> Third: user?s notes
>
> Example: If X user he registers, it will copy values
from table one
> to table three, related User ID
There is lots you have not said but let's just assume that
you have two
forms.
1. Standard values or a unregistered user I assume
2. Form used by user's registering
One way. Using form 2, query the db for the unregistered info
from
table in 1. Registering user enters info and you do an insert
into
table 2, with the information on the form, with the submit.
>
> How can I do that?
>
> Please your help.
>
> FAIZ
--