|
Hello All,
My first post, yippee! First, a little background ... I've been using PHP/MySQL since about 2000 and Perl since about 1997 (although Perl isn't used as much now). I've always created my PHP/MySQL web apps from scratch. However, I've recently been searching for a PHP generator that will produce insert, update, delete, view one, and view all code for MySQL tables. I've found several online (one by SQLMaestro which was ok) but the problem is that none of them account for the different relationships of tables and fields. Let's say you have a child table, tblchild(my_id, my_loc), which has a foreign key, my_id, which is simply a number that references the parent table, tblparent(my_id, my_name). When editing and viewing tblchild you want to see the my_name associated with my_id because just showing the number is useless. All generators I've tried simply do not handle these situations and just assume all fields are entered with simple text boxes. Basically, I should be able to specify how a field is displayed and stored (which may be two different values). So the $64,000 question is: does anyone know of such a generator? Thanks
-Tom
|