|
| SQLAdmin
An SQL Administration User Interface for the Web.
Page last modified on March 13, 2000.
Actually no documentation is available on line. I will really try to put
some more information about SQLAdmin on the page as soon as possible. In the
meanwhile, you can:
If you hit the link try it above, you will be able to edit a SQL
table stored on a local mSQL server. This is a very simple table defined
that way:
CREATE TABLE testmsqladmin (
subject TEXT(64) NOT NULL,
email TEXT(64) NOT NULL,
message TEXT(1024) NOT NULL
);
|
Now to enable anyone to modify this table, you can simply put an HTML file
like this one on your Web server:
require ("sqladmin.php3");
echo administrationTable ("alex",
"testmsqladmin", "subject");
?>
|
The first require line includes SQLAdmin. You will have to put such a
line before using any function defined by SQLAdmin. The second line prints
the HTML source returned by adminitrationTable. This function is
defined by SQLAdmin and take three parameters: the database name, the table
name and the column on which sorting is based. That's all :-).
|
|