AW: How to create table in msql DB through cgi script

2001-07-21 Thread Stephan Skusa
What about installing and using phpMyAdmin?? http://phpmyadmin.sourceforge.net/ > -Ursprungliche Nachricht- > Von: Joseph Maxwell [mailto:[EMAIL PROTECTED]] > Gesendet: Samstag, 21. Juli 2001 12:58 > An: [EMAIL PROTECTED] > Betreff: How to create table in msql DB thr

Re: How to create table in msql DB through cgi script

2001-07-21 Thread Maurice Aubrey
You need to prepare and execute all of the SQL statements. You're just assigning SQL strings to a variable and printing them out -- you need to actually execute them. Only the last statement, "select * from test_1," is actually being run. Read through the perl DBI manual:

How to create table in msql DB through cgi script

2001-07-21 Thread Joseph Maxwell
Hello, I have a database set up on my web site at my ISP server. Connection to the DB can only be made from the localhost. So I have to do everything through CGI. They have the perl DBI and php3 that I can use to access the database. They provided a script to access the DBI which I modified to c