0

I am building a cgi page that prints out a table from sqlite. I have added features such as delete row, update row data with the website interface.

I was wondering if there are similar code available on the net? something like templates?

Someone must have done something similar?

Gordon
  • 1,633
  • 3
  • 26
  • 45
  • http://stackoverflow.com/questions/2796232/whats-the-fastest-way-to-get-crud-over-cgi-on-a-database-handle-in-perl – daxim Dec 08 '10 at 14:24

1 Answers1

0

What you want to do is called CRUD (Create, Read, Update, Delete).

Since you've tagged this question with 'perl', You could check out CGI::CRUD, but there are several ready-made packages available:

Will Sheppard
  • 3,272
  • 2
  • 31
  • 41