N
news
My Knowledge of SQL Is sadly lacking. Is there an automated way to do this
within dreamweaver?
Depends on how you are handling the web form (client-side, server-side,
what language, data pages, etc) but it comes down in the end to an INSERT
query:
INSERT INTO MyTable
(RowID, FName, LegLength, DateOfIssue)
VALUES
(1029, "Eric", 16.298, #2004-04-23#)
but it's probably up to you to build this string in the correct syntax for
the target database, and then to get the database to execute it.
Hope that helps
Tim F
within dreamweaver?
I'm using web forms to enter data into a database, so I want info
entered via the web form to be added to the existing data in it's
field in the data base.
Depends on how you are handling the web form (client-side, server-side,
what language, data pages, etc) but it comes down in the end to an INSERT
query:
INSERT INTO MyTable
(RowID, FName, LegLength, DateOfIssue)
VALUES
(1029, "Eric", 16.298, #2004-04-23#)
but it's probably up to you to build this string in the correct syntax for
the target database, and then to get the database to execute it.
Hope that helps
Tim F