Sorry,I'll expand on my initial request.
I have set up a script which controls three seperate tables within a database. The script is array driven and I can read, write and edit any of the 3 tables with the same script.
I wrote a routine which populates all three tables with useful data and the sections for reading the data are all but complete.
I am now trying to work out how to write a new record to a table or write an edited record back to a table.
I understand how to do the actual writing but it is the manipulation of the data which I would like some help with.
Some of the data comes from a parsed form which I am able to access via DBI using '$query->param' etc. but the rest of the data is created within the script at the time of writing, such data as data created, date last edited, username, password etc.
I created the 'INSERT' string programatically for my auto populate routine and will follow the same path with the working table. I would like to ee a working example of such code to ensure I am not missing out on a simple process.
None of the books I have read actually cover this aspect of the programming process.
I will post the code I use to populate the tables if you think I am looking for a free solution.
Keith